使用el自定义表头时,vue项目报错 [vue/no-unused-vars] 'scope'' is defined but never used.

官方文档

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

修改将slot-scope="scope"改为slot-scope="{}"


 

解决方案来源:https://blog.csdn.net/weixin_45622961/article/details/115892405

上一篇:[转载]详解网络传输中的三张表,MAC地址表、ARP缓存表以及路由表


下一篇:Hibernate一对多关联映射的配置及其级联删除问题