vue make multipage app for catalog list
This commit is contained in:
33
cateditor/src/pages/editor/App.vue
Normal file
33
cateditor/src/pages/editor/App.vue
Normal file
@ -0,0 +1,33 @@
|
||||
<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 () {
|
||||
return {
|
||||
//
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
html { overflow-y: auto }
|
||||
</style>
|
||||
Reference in New Issue
Block a user