Style design

This commit is contained in:
2021-04-23 13:10:01 +02:00
parent e59e40b57d
commit 8ec2346cd4
5 changed files with 85 additions and 15 deletions

View File

@@ -1,22 +1,19 @@
<template>
<div class="home">
<img alt="KamilCraft.com logo" :src="`${publicPath}assets/logo.png`">
<HelloWorld/>
<About/>
</div>
</template>
<script>
import HelloWorld from '@/components/HomePageElement.vue'
import About from '@/components/sections/About.vue'
export default {
name: 'Home',
data () {
return {
publicPath: process.env.BASE_URL
}
},
components: {
HelloWorld
HelloWorld,
About
}
}
</script>