当前位置:   article > 正文

property or method “xxxx“ is not defined_property or method is not defined

property or method is not defined

Property or method “xxxx“ is not defined

vue控制台报这个错一般都是某个属性/方法没有定义导致

<script>
    //导入cookie组件
    import Cookies from "js-cookie";
    
    export default {
        data() {
            return {
            	maxLength: 6,
            	......................
                xxx: ""
                }
        },
        methods: {
           xxx(){
           //方法处理的业务
           ......................
           }
    }
    //检查一下方法有没有定义到methods外面
    ....................
}
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

注意!!!

如果方法/属性都定义了,检查一下定义的位置对不对,是否把方法定义到methods{}括号外面了

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

闽ICP备14008679号