Here is my current template:
<a-droppable v-for="n in curSize" :key="n - 1" :style="{width: `${99.99 / rowLenMap[orderList[n - 1]]}%`, order: orderList[n - 1]}"> <a-draggable :class="{thin: rowLenMap[orderList[n - 1]] > 10}"> <some-inner-element>{{rowLenMap[orderList[n - 1]]}}</some-inner-element> </a-draggable> </a-droppable>
The problem is that i have to write rowLenMap[orderList[n - 1]]
multiple times, and i’m afraid vue.js engine will also calculate it multiple times.
What i want is something like this:
<a-droppable v-for="n in curSize" :key="n - 1" v-define="rowLenMap[orderList[n - 1]] as rowLen" :style="{width: `${99.99 / rowLen}%`, order: orderList[n - 1]}"> <a-draggable :class="{thin: rowLen > 10}"> <some-inner-element>{{rowLen}}</some-inner-element> </a-draggable> </a-droppable>
I think it’s not difficult to implement technically because it can be clumsily solved by using something like v-for="rowLen in [rowLenMap[orderList[n - 1]]]"
. So is there any concise and official solution?
Advertisement
Answer
curSize
is an array. Your temporary values comprise a corresponding implied array sizedOrderList = curSize.map(n => orderList[n-1])
. If you define that as a computed, your HTML becomes
<a-droppable v-for="n, index in sizedOrderList" :key="curSize[index]" :style="{width: `${99.99 / rowLenMap[n]}%`, order: n}"> <a-draggable :class="{thin: rowLenMap[n] > 10}"> <some-inner-element>{{rowLenMap[n]}}</some-inner-element> </a-draggable> </a-droppable>