vue make multipage app for catalog list

This commit is contained in:
Seth Ladygo
2019-04-22 15:20:03 -07:00
parent 6d1af24a57
commit 5ef49bff51
10 changed files with 347 additions and 12 deletions

View 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>