front-end almost done | started back-end

This commit is contained in:
Amir Mohamadi
2020-11-23 19:39:26 +03:30
parent 95149f0e72
commit 80a7abafb7
191 changed files with 60163 additions and 950 deletions
+8 -7
View File
@@ -1,22 +1,23 @@
<template>
<div>
<site-header/>
<SiteHeader/>
<nuxt/>
<home-footer v-if="this.$route.name === 'lang'"></home-footer>
<site-footer v-else></site-footer>
<SiteFooterHomePage v-if="this.$route.name === 'lang'"></SiteFooterHomePage>
<SiteFooterGlobal v-else></SiteFooterGlobal>
</div>
</template>
<script>
export default {
mounted() {},
mounted() {
},
head() {
return {
htmlAttrs: {
lang: 'fa'
}
}
lang: this.$route.params.lang
}
}
}
}
</script>