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

  • Post author:
  • Post category:其他



报错内容:

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>


结尾:

错误记录。



版权声明:本文为m0_50789201原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。