Files
arakrail/layouts/default.vue
T
2020-11-23 19:39:26 +03:30

24 lines
399 B
Vue

<template>
<div>
<SiteHeader/>
<nuxt/>
<SiteFooterHomePage v-if="this.$route.name === 'lang'"></SiteFooterHomePage>
<SiteFooterGlobal v-else></SiteFooterGlobal>
</div>
</template>
<script>
export default {
mounted() {
},
head() {
return {
htmlAttrs: {
lang: this.$route.params.lang
}
}
}
}
</script>