Vue slot-scope=”scope”报错
文章描述:
Vue使用Element框架table表格slot-scope=”scope”报错
1、升级element-ui的版本,如果element-ui的版本低于2.5是不支持使用slot-scope=”scope”>的
在package-json中查看你的element-ui版本
先卸载之前安装的element-ui
npm uninstall element-ui
升级到最新版本
npm i element-ui -S
我这里的Vue使用的是”element-plus”: “^2.3.5″,
把 <template slot-scope=”scope”>中的slot-scope改成v-slot
发布时间:2023/06/09
发表评论