Vue报错 the “scope“ attribute for scoped slots have been deprecated and replaced by “slot-scope
Vue报错the “scope” attribute for scoped slots have been deprecated and replaced by “slot-scope” since 2.5. The new “slot-scope” attribute can also be used on plain elements in addition toto denote scope
·
Vue报错
the “scope” attribute for scoped slots have been deprecated and replaced by “slot-scope” since 2.5. The new “slot-scope” attribute can also be used on plain elements in addition to to denote scoped slots.
自2.5版以来,作用域插槽的“scope”属性已被弃用并替换为“slot scope”。除了之外,新的“slot scope”属性还可以用于普通元素,以表示作用域的插槽。
原因:
<template scope="scope">
</template>
解决:
<template slot-scope="scope">
</template>
更多推荐
已为社区贡献6条内容
所有评论(0)