template slot-scope="scope" 不显示
时间: 2023-09-09 15:10:06 浏览: 97
vue template中slot-scope/scope的使用方法
如果您使用 Vue 2.5 或更高版本,则应该使用 v-slot 替代 template slot-scope。
例如,您可以像这样使用 v-slot:
```
<template v-for="item in items">
<div v-if="item.show" v-slot="scope">
{{ scope.item }}
</div>
</template>
```
如果您使用 Vue 2.4 或更低版本,则应该确保已正确安装 Vue 模板编译器。您可以在 Vue 的官方文档中找到更多关于安装和使用模板编译器的信息。
阅读全文