计算属性传递参数
html代码:
<p>{{ getNewIndex(data) }}</p>
js:
computed: {
getNewIndex() {
// data是使用的时候的参数
retun (data) => {
return data.index;
}
},
}
原文地址:https://www.cnblogs.com/lxk0301/p/12165723.html
时间: 2024-10-20 06:10:13