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

Posted 五花肉三七分

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用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>

结尾:

错误记录。

以上是关于使用slot-scope=“scope“出错问题的主要内容,如果未能解决你的问题,请参考以下文章

关于Element UI Table 的 slot-scope

关于Element UI Table 的 slot-scope

关于slot-scope="scope"

通过 Vue.js 中的 slot-scope 将 props 传递给所有子项的正确方法

Vue插槽:slot、slot-scope与指令v-slot使用方法区别讲解

`v-if` and `slot-scope`怎么一起使用?一起用v-if没效果