Avoid mutating a prop directly since the value will be overwritten

前端 未结 11 916
被撕碎了的回忆
被撕碎了的回忆 2020-12-10 01:07

I have very common problem with upgrading to Vue 2.0

I am getting warning:

Avoid mutating a prop directly since the value will be overwritte

11条回答
  •  半阙折子戏
    2020-12-10 01:44

    if you want to mutate props - use object.

    
    

    component:

        props: ['user'],
        methods: {
          setUser: function() {
            this.user.username= "User";
            this.user.password= "myPass123";
          }
        }
    

提交回复
热议问题