Files
procat2/cateditor/src/pages/editor/App.vue
2019-05-03 00:03:59 -07:00

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>