使用slot-scope=“scope“出错问题

报错内容:

error  'scope' is defined but never used  vue/no-unused-vars

解决方法:

1:把原来的slot-scope="scope"写为slot-scope

2:写为这种形式

<template slot="header" slot-scope="{}">
  	<el-input v-model="search" placeholder="请输入关键字搜索"/>
	</template>

结尾:

错误记录。

猜你喜欢

转载自blog.csdn.net/m0_50789201/article/details/118122821