Property or method "articleInfos" is not defined on the instance but referenced during render. Make sure that this property is reactive,
时间: 2023-09-25 07:17:18 浏览: 140
Python中对错误NameError: name ‘xxx’ is not defined进行总结
这个错误是由于在渲染期间引用了一个名为"articleInfos"的属性或方法,但是在实例中没有定义它。要解决这个问题,你需要确保在Vue实例的data选项中定义了"articleInfos"属性,并且该属性是响应式的。这样Vue才能正确地检测到该属性的变化并进行重新渲染。如果你正在使用vuex,你还需要确保在store.js中正确地定义了"articleInfos"的状态和相关的mutations或actions。 如果你正在使用类组件,你还需要在类中初始化该属性。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [vuex报错:Property or method “$store“ is not defined on the instance but referenced during render....](https://blog.csdn.net/qq_46199553/article/details/127645971)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文