29 lines
362 B
Vue
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>
|