cake_frontend/app.vue

10 lines
178 B
Vue

<script setup lang="ts">
import ProductCard from '~/src/entities/product/ui/ProductCard.vue'
</script>
<template>
<UContainer>
<ProductCard />
</UContainer>
</template>