当前位置:   article > 正文

Vue报错(Property or method “xxx“ is not defined on the instance but referenced during render.)_[vue warn]: property or method "alert" is not defi

[vue warn]: property or method "alert" is not defined on the instance but re
//Vue报错(Property or method "xxx" is not defined on the instance but referenced during //render.)

我报错如下:Vue报错(Property or method "xxx" is not defined on the instance but referenced during render.)

属性或方法“xxx”不是在实例上定义的,而是在呈现期间引用的。通过初始化该属性,确保该属性是反应性的,无论是在data选项中,还是在基于类的组件中

原因:你的“xxx”属性或者是“xxx”方法没有定义,

解决方法:查看你的data或者methods或者props正确书写

  1. export default {
  2. data(){
  3. return{
  4. xxx:""
  5. },
  6. methods:{
  7. xxx(){}
  8. }
  9. },
  10. }
  1. //使用params传参,不能用path,要用name
  2. props($route){//普通赋值
  3. return {msg:$route.parmas.msg}
  4. }
  5. props({params:{mags}}){//双重解构赋值
  6. return {mags}
  7. }},

我的错误:

1.将router 中的 ”props“ 错写成“porps”

2.没有将属性写进data中

3.将方法写在了methods外

4.在Xxx.vue中使用时没有用props

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/315831
推荐阅读
相关标签
  

闽ICP备14008679号