欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue——解决报错 Computed property "****" was assigned to but it has no setter.

程序员文章站 2022-03-29 21:42:13
在最近的项目中遇到了如下的警告信息:   [vue warn]:computed property " currentstep" was assigned to but it has no sette...

  在最近的项目中遇到了如下的警告信息:

   [vue warn]: computed property " currentstep" was assigned to but it has no setter.(意思是:计算属性 currentstep被赋值了,但此它并未定义 set方法 。)

  要解决这个问题,首先要明确这个问题出现的原因。这个警告是由于vue的计算属性内部没有set方法,即:计算属性不支持值得修改(只能针对data中的值进行计算)。

data(){
    return {
        stepmap:0
    }
},
computed:{
    currentstep:{
        get(){
             return this.stepmap
        },
        set(v){
            this.stepmap = v
        }
        // set方法只写下面这一行也是可以的
        // set(){}
    }
}   

如上面所示,只要手动给计算属性添加get和set方法的不同操作,这个警告就解决了。

以上就是vue——解决报错 computed property "****" was assigned to but it has no setter.的详细内容,更多关于vue 解决报错的资料请关注其它相关文章!

相关标签: vue 报错