19 lines
298 B
Vue
19 lines
298 B
Vue
<template>
|
|
<product-page></product-page>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
import ProductPage from './components/ProductPage.vue'
|
|
|
|
export default defineComponent({
|
|
name: 'App',
|
|
components: {
|
|
ProductPage
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|