Vue computed 带参数
在使用计算属性的时候,有时需要带参数。正确的写法如下:...computed:{test: function (a) {return ()=>{return this.attr1+ ' ' + a}}}...<a>{{ test ('x-y-x')}}</a>使用闭包。...
·
在使用计算属性的时候,有时需要带参数。正确的写法如下:
...
computed:{
test: function () {
return a=>{
return this.attr1+ ' ' + a
}
}
}
...
<a>{{ test ('x-y-x')}}</a>
使用闭包。
更多推荐
已为社区贡献12条内容
所有评论(0)