<el-table :data="list">
<el-table-column label="静态内容">
<template scope="scope">
static content
</template>
</el-table-column>
...
</el-table>
上面这段代码在 vscode 编辑器中会出现错误提示, 如图:
解决办法是把 scope="scope"
改为 scope="{}"
, 如图:
<el-table :data="list">
<el-table-column label="静态内容">
<template scope="{}">
static content
</template>
</el-table-column>
...
</el-table>
注意: 如果把 scope="{}" 写成 scope="", vscode 倒是不报警告了, 但经测试发现内容不会被渲染, 所以一定要这样写: scope="{}"