下面是写的一个计算属性,但是 span里不显示, console.log 都能打印
是哪出了问题
<span>{{areaUser}}</span> computed: { // 所属用户 areaUser: function () { this.areaOptions.forEach( (element, index) => { if (element.id === this.temp.areaId) { console.log('这里可以打印') return 11111111 } }) } }
相关分类