首页 > 其他分享 >控制台报错property or method "xxx " is not defined on the instance but referenced during render

控制台报错property or method "xxx " is not defined on the instance but referenced during render

时间:2022-11-15 17:23:05浏览次数:55  
标签:referenced render xxx 报错 orderData property

可能原因

template中给标签加了v-if='orderData[xxx]'

解决办法

换成v-if='orderData.xxx' 或者 v-if='orderData["xxx"]'

tips

中括号[]适用于所有属性,其括号[]内为字符串或者变量或数字。

标签:referenced,render,xxx,报错,orderData,property
From: https://www.cnblogs.com/nicoz/p/16893111.html

相关文章