Add initial "logo" component

still just proving some concepts at this point
This commit is contained in:
Lance Edgar 2019-11-06 00:10:26 -06:00
parent 41e65b33c8
commit 7bdaeee691
7 changed files with 78 additions and 9 deletions

View file

@ -1,18 +1,25 @@
<template>
<div class="home">
<img alt="Vue logo" src="../assets/logo.png">
<byjove-logo :appsettings="appsettings"></byjove-logo>
<HelloWorld msg="Welcome to Your Vue.js App"/>
</div>
</template>
<script>
// @ is an alias to /src
import HelloWorld from '@/components/HelloWorld.vue'
import appsettings from '@/appsettings'
import {ByjoveLogo} from '@/components'
import HelloWorld from '@/components/HelloWorld'
export default {
name: 'home',
components: {
HelloWorld
}
name: 'home',
components: {
ByjoveLogo,
HelloWorld
},
data() {
return {
appsettings: appsettings,
}
},
}
</script>