21 lines
510 B
Vue
21 lines
510 B
Vue
<script setup lang="ts">
|
|
import AppBox from 'components/app/AppBox.vue';
|
|
import TotalProductCardComponent from 'components/04_product-service/TotalProductCardComponent.vue';
|
|
</script>
|
|
<template>
|
|
<AppBox
|
|
class="row full-width"
|
|
no-padding
|
|
style="
|
|
width: 75vw;
|
|
display: grid;
|
|
background: none;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: var(--size-3);
|
|
"
|
|
>
|
|
<div v-for="i in 12" :key="i">
|
|
<TotalProductCardComponent />
|
|
</div>
|
|
</AppBox>
|
|
</template>
|