vue3-infinite-list icon indicating copy to clipboard operation
vue3-infinite-list copied to clipboard

how to use inside of nested v-for ?

Open myomyintaung1411 opened this issue 2 years ago • 0 comments
trafficstars

                <div v-for="(col, iCol) in dl.lst" :key="iCol class="col c2  h-[168px]    text-center  " ">
                    <div class="cell border-b border-slate-500 w-[26px] h-[26px]    text-center overflow-hidden "
                        v-for="(c, iRow) in col" :key="iRow">

                        <img v-if="c >= 100" :src="'/static/img/dl-' + c + '.png'" alt=""
                            class="h-[100%] w-full  align-center p-[2px] ">

                    </div>
                </div>

myomyintaung1411 avatar Dec 13 '22 08:12 myomyintaung1411