2023-04-23 14:19:03 +08:00
|
|
|
<template>
|
2023-04-27 13:58:47 +08:00
|
|
|
<div class="grid-row py-10 lg:(grid-cols-3) md:(grid-cols-2)">
|
|
|
|
<div
|
|
|
|
v-for="col in 3"
|
|
|
|
:key="col"
|
|
|
|
class="h-10 w-full rounded-lg bg-primary bg-opacity-35"
|
|
|
|
/>
|
2023-04-23 14:19:03 +08:00
|
|
|
</div>
|
|
|
|
</template>
|