【vue】Avoid mutating a prop directly since the value will be overwritten whenever...

问题:

Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop’s value. Prop being mutated: “dateTime”

这几天做前端vue经常出现这个问题,看着代码运行时报出的问题也是很不舒服呀,因此进行了翻译:

避免直接更改prop,因为每当父组件重新渲染时,该值都会被覆盖。 而是使用基于属性值的数据或计算属性。Prop被更改"dateTime"

也就是说在父子组件传值的时候用到了prop属性,这个属性中定义的数据最好不要直接在子组件中进行更改,可能会在父组件渲染的时候被覆盖。

例子:

export default {
  props: {
    title: { default: '' },
    minDatep: { default: '' },
    dateTime: { default: '' }
  }
  methods: {
    onConfirm (value) {
      var vm = this
      vm.dateTime= '2020-01-05'
      vm.$emit('onDate', formatDate(value, 'yyyy-MM-dd'))
    }
  }
}

上面的例子就是直接修改prop中的dateTime的数据,这时候在运行的时候,方法被触发就会出现上面的问题

处理方式:
通过父组件给子组件传值的方式更改,这样问题就解决了~

你可能感兴趣的:(vue)