点击查看Vue编辑器说明文档

瓷砖列表edit icon

|
|
Fork(复制)
|
|
提交反馈
嵌入
设置
下载
<template>
格式化
支持Emmet,输入 p 后按 Tab键试试吧!
            
            <div class="list">
  <div class="item" v-for="item in dataList" ></div>
</div>
        
<style>
格式化
            
            .list {
  display: flex;
  .item {
    border: 1px solid #abb;
    width: 100px;
    height: calc(100px * 0.5) ;
  }
}

        
<script setup>
格式化
            
            import {
    ref
} from "vue"

const dataList = ref([{
        width: 60,
        height: 100,
    },
    {
        width: 100,
        height: 120,
    },
    {
        width: 100,
        height: 140,
    },
    {
        width: 100,
        height: 80,
    },
]);
        
预览
控制台