13 lines
262 B
Vue
13 lines
262 B
Vue
<script setup>
|
|
import Products from "@/components/imports/Products.vue";
|
|
</script>
|
|
<template>
|
|
<div class="fixed-grid has-12-cols">
|
|
<div class="grid">
|
|
<div class="cell is-col-span-12">
|
|
<Products />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|