31 lines
532 B
Vue
31 lines
532 B
Vue
<template>
|
|
<v-app>
|
|
<Navbar/>
|
|
<v-content>
|
|
<CatalogEditor/>
|
|
<!-- <AddProductDialog value/> -->
|
|
</v-content>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import Navbar from '../../components/Navbar'
|
|
import CatalogEditor from '../../components/CatalogEditor'
|
|
/* import AddProductDialog from './components/AddProductDialog' */
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
Navbar,
|
|
CatalogEditor,
|
|
/* AddProductDialog, */
|
|
},
|
|
data: () => ({
|
|
}),
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
html { overflow-y: auto }
|
|
</style>
|