[Vue warn]: Property or method “loading“ is not defined on the instance but referenced during render
[Vue warn]: Property or method "loading" is not defined on the instance but referenced during render关于"xxx" is not defined解决关于"xxx" is not defined一般出现这个错误基本都是因为在data中没有定义这个数据。解决由于在组件中加入v-loading=“load
·
[Vue warn]: Property or method "loading" is not defined on the instance but referenced during render
关于"xxx" is not defined
一般出现这个错误基本都是因为在data中没有定义这个数据。
解决
由于在组件中加入v-loading=“loading”,而没有在data中添加loading,所以报错。
// 直接在data中添加loading
data () {
return {
loading: true,
}
}
// 注意在成功拿到数据后要将loding置为false
// this.loading = false
更多推荐
已为社区贡献8条内容
所有评论(0)