add pwa app

This commit is contained in:
Amir Mohamadi
2021-01-31 20:47:26 +03:30
parent faa0d48d87
commit 534fe02b3a
23 changed files with 1541 additions and 929 deletions
+34
View File
@@ -0,0 +1,34 @@
<template>
<div class="page calculation--page latin-digits">
<calculation-app/>
<calculation-guide-tables/>
</div>
</template>
<script>
export default {
computed: {
staticData() {
return this.$store.state.staticData.pwa[this.$route.params.lang]
}
},
head() {
return {
htmlAttrs: {
title: this.staticData.title
},
title: this.staticData.title,
meta: [
{
hid: this.staticData.title,
name: 'description',
content: this.staticData.t1
}
]
}
},
layout: 'pwa'
}
</script>