Files
Amir Mohamadi 534fe02b3a add pwa app
2021-01-31 20:47:26 +03:30

32 lines
545 B
Vue

<template>
<div>
<SiteHeader/>
<nuxt/>
<SiteFooterHomePage v-if="this.$route.name === 'lang'"/>
<SiteFooterGlobal v-else/>
<off-canvas/>
<page-load/>
<pre-loader/>
</div>
</template>
<script>
export default {
head() {
return {
htmlAttrs: {
lang: this.$route.params.lang
},
meta: [
{
hid: 'description',
name: 'description',
content: this.$store.state.global.meta_description[this.$route.params.lang]
}
],
}
}
}
</script>