1. 为对象或数组添加属性

Vue.set(this.singerData, 'singer4', 'there is nothing in singer4');

表示向对象this.singerData添加新属性singer4,值为'there is nothing in singer4'

2. 直接改变对象或数组属性

this.singerData.singer1 = 'singer1 changed';

和修改普通对象属性相同,直接修改即可。

Logo

前往低代码交流专区

更多推荐