add initial cateditor vue files

This commit is contained in:
Seth Ladygo
2019-04-01 17:08:48 -07:00
parent d1aa3fa7cd
commit 4e99dcd1e0
19 changed files with 13217 additions and 0 deletions

40
cateditor/src/App.vue Normal file
View File

@ -0,0 +1,40 @@
<template>
<v-app>
<v-toolbar app>
<v-toolbar-title class="headline text-uppercase">
<span>ProCatalog</span>
<span class="font-weight-light">Catalog Edior</span>
</v-toolbar-title>
<v-spacer></v-spacer>
<v-toolbar-items class="hidden-sm-and-down">
<v-btn
flat
href="https://github.com/vuetifyjs/vuetify/releases/latest"
target="_blank"
>Dashboard</v-btn>
<v-btn flat>Link Two</v-btn>
<v-btn flat>Link Three</v-btn>
</v-toolbar-items>
</v-toolbar>
<v-content>
<HelloWorld/>
</v-content>
</v-app>
</template>
<script>
import HelloWorld from './components/HelloWorld'
export default {
name: 'App',
components: {
HelloWorld
},
data () {
return {
//
}
}
}
</script>