组件
<view v-for="rIndex in rowCount" :key="rIndex">
<u-row>
<u-col :span="12 / cols" v-for="index in columnCount" :key="index">
<slot v-if="dataList[cardIndex(rIndex,index)]" :data="dataList[cardIndex(rIndex,index)]" :index="cardIndex(rIndex,index)"></slot>
</u-col>
</u-row>
</view>
页面:
<template v-slot="{data,index}">
<view>
{{data + ' ' + index}}
</view>
</template>
1 个回复
DCloud_UNI_WZF