Update style

This commit is contained in:
2021-08-29 21:40:19 +02:00
parent 1d5cc99877
commit cfed14b1c4
9 changed files with 173 additions and 14 deletions

View File

@@ -5,12 +5,30 @@
</section>
</template>
<style lang="scss">
</style>
<script>
import About from '../components/sections/About'
import Experiences from '../components/sections/Experiences'
export default {
name: 'Home',
mounted () {
const header = {
title: this.$route.meta.title,
description: [
'Chciałbym Państwa powitać na mojej stronie!',
'Przedstawiam tutaj część swojego życia związaną z programowaniem i projektowaniem aplikacji internetowych.'
]
}
this.$store.commit('setHeader', header)
},
destroyed () {
this.$store.commit('resetHeaderTitle')
this.$store.commit('resetHeaderDescription')
},
components: {
About,
Experiences