<div class="list">
<div class="item" v-for="item in dataList" ></div>
</div>
<template>
格式化
支持Emmet,输入 p 后按 Tab键试试吧!
.list {
display: flex;
.item {
border: 1px solid #abb;
width: 100px;
height: calc(100px * 0.5) ;
}
}
import {
ref
} from "vue"
const dataList = ref([{
width: 60,
height: 100,
},
{
width: 100,
height: 120,
},
{
width: 100,
height: 140,
},
{
width: 100,
height: 80,
},
]);
预览
控制台