added animations and pageLoad and preLoader

This commit is contained in:
Amir Mohamadi
2020-12-19 13:26:55 +03:30
parent bc5e617778
commit 9433eb84ac
57 changed files with 13099 additions and 494 deletions
+9 -1
View File
@@ -31,11 +31,19 @@
</template>
<script>
import {fadeInAnimation} from "~/mixins/animations"
export default {
computed: {
staticData() {
return this.$store.state.staticData.gDesign[this.$route.params.lang]
}
}
},
mixins: [fadeInAnimation],
head() {
return {
title: this.staticData.title
}
},
}
</script>