24 lines
399 B
Vue
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>
|