vue項目報錯如下:(Emitted value instead of an instance of Error)


(Emitted value instead of an instance of Error) the "scope" attribute for scoped slots have been deprecated and replaced by "slot-scope" since 2.5. The n
ot-scope" attribute can also be used on plain elements in addition to <template> to denote scoped slots.

解決方法

檢查下你的列表組件里,slot 里的 <template> 上面有個 scope 屬性,你改成 slot-scope

<template scope="xxx">yyyyyyyy</template>
改成

<template slot-scope="xxx">yyyyyyyy</template>
scope 屬性在2.5以后的版本中已經廢棄, 被 slot-scope 替代
slot-scope 不光可以用在 template 元素上,也可以用在其它元素

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM