value - data引用另一个数据



我很新的值,mylistrandom怎么能从somerandom得到相同的值

export default {
data () {
return {
somerandom:"foo",
mylist:{
random: this.somerandom
}
}
}
}

model init一个object with value。可以默认设置值或在计算或挂载后运行函数


data() {
return {
somerandom: '',
someOther: [],
}
},
computed: {
useRandom() {
this.somerandom = this.rand();
}
},
methods: {
rand(){
return 'random';
}
}

相关内容

  • 没有找到相关文章

最新更新