vue3 computed传参
·
一开始是这么写的
<div
v-for="(item, index) in xxxList"
:key="item"
:style="{
'left': xxxLeft(index),
}"
>
const xxxLeft = computed((index) => {
return index*100 + 'px';
});
结果发现报错,查了下发现,还需要再套一层()=>才行
如下:
const xxxLeft = computed(()=>(index) => {
return index*100 + 'px';
});
更多推荐
所有评论(0)