记录帖:slot-scope=“scope“报错Unexpected useless attribute on `<template>`解决

遇到一个很奇葩的问题,记录一下,在官网找到解决方法:
上面的是vue 2.x的原*代码,错误原因>>template有格式规定

<template width="180" slot-scope="scope">  //width和slot-scope="scope"不能共存,格式报错
            <el-button
              type="primary"
              icon="el-icon-edit"
              size="mini"
              @click="showEditDialog(scope.row.id)"
            ></el-button>
            后面的代码省略了

在这里插入图片描述
---------------------------分割线------------------------------

vue/no-useless-template-attributes 的解决方法


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