tnfe / vue3-infinite-list

一个支持百万数量级的Vue3无限滚动列表组件
https://tnfe.github.io/vue3-infinite-list
226 stars 37 forks source link

how to use inside of nested v-for ? #5

Open myomyintaung1411 opened 1 year ago

myomyintaung1411 commented 1 year ago
                <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>