rename HelloWorld to CatalogEditor

This commit is contained in:
Seth Ladygo
2019-04-02 15:03:45 -07:00
parent c7b3bd48a9
commit 9bf32f3d32
3 changed files with 17 additions and 17 deletions

View File

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

View File

@ -18,11 +18,11 @@
</template>
<script>
export default {
data: () => ({
foo: true
})
}
export default {
data: () => ({
foo: true
})
}
</script>
<style>