ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
``` <el-row> <el-col :span="3" v-for="(o, index) in 8" :key="o" > <el-card :body-style="{ padding: '0px' }" > <img :src="index+'.jpg'" class="image"> <div style="padding: 14px;"> <span>好吃的汉堡</span> <div class="bottom clearfix"> <time class="time">{{ currentDate }}</time> <el-button type="text" class="button">操作按钮</el-button> </div> </div> </el-card> </el-col> </el-row> ``` ``` v-for="(o, index) in 8" :key="o" ``` 0 ``` <img :src="index+'.jpg'" class="image"> ``` ``` <img :src="o+'.jpg'" class="image"> ```