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

39 lines
932 B
Vue

<template>
<section class="pwa-about">
<div class="container">
<div class="row">
<div class="col-12">
<div class="description">
<h2 class="title">{{ staticData.t6 }}</h2>
<p>{{ staticData.t1 }}</p>
<br>
<p>
<span>{{ staticData.t3 }}</span>
<a href="/" target="_blank">www.arakrail.com</a>
<span>{{ staticData.t4 }}</span>
</p>
<br>
<p>{{ staticData.t2 }}</p>
<div class="copyRight">
<p>{{ staticData.t5 }}</p>
<a href="http://negarehagency.com/" target="_blank">Negareh Agency</a>
</div>
</div>
</div>
</div>
</div>
</section>
</template>
<script>
export default {
computed: {
staticData() {
return this.$store.state.staticData.pwa[this.$route.params.lang]
}
}
}
</script>