props: ['optionss'],computed: {optionss() { return this.options.name.substr(0, 1);
},},这样写是不对得
1 回答
摇曳的蔷薇
TA贡献1793条经验 获得超6个赞
当然是可以的啊
注意你的命名:
props: ['optionss'], computed: { newOptionss() { return this.optionss.name.substr(0, 1); }, },
添加回答
举报
0/150
提交
取消