遇到一个很奇葩的问题,记录一下,在官网找到解决方法:
上面的是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>
后面的代码省略了
---------------------------分割线------------------------------