cake_frontend/app.vue

10 lines
178 B
Vue
Raw Normal View History

2024-05-23 08:45:22 +00:00
<script setup lang="ts">
import ProductCard from '~/src/entities/product/ui/ProductCard.vue'
</script>
<template>
<UContainer>
<ProductCard />
</UContainer>
</template>