Files
procat2/cateditor/src/App.vue
2019-04-03 00:09:09 -07:00

29 lines
362 B
Vue

<template>
<v-app>
<Navbar/>
<v-content>
<CatalogEditor/>
</v-content>
</v-app>
</template>
<script>
import Navbar from './components/Navbar'
import CatalogEditor from './components/CatalogEditor'
export default {
name: 'App',
components: {
Navbar,
CatalogEditor
},
data () {
return {
//
}
}
}
</script>