68 lines
1.9 KiB
Vue
68 lines
1.9 KiB
Vue
<template>
|
|
<div class="page tech-info--page latin-digits">
|
|
<Hero :title="staticData.title"/>
|
|
<section class="s1">
|
|
<div class="container">
|
|
<div class="panel">
|
|
<div class="content gStandard">
|
|
<h2 class="first">{{ staticData.t1 }}</h2>
|
|
<p>{{ staticData.t2 }}</p>
|
|
|
|
<h2>{{ staticData.t3 }}</h2>
|
|
<p>{{ staticData.t4 }}</p>
|
|
<p>{{ staticData.t5 }}</p>
|
|
|
|
<h2>{{ staticData.t6 }}</h2>
|
|
<p>{{ staticData.t7 }}</p>
|
|
<img class="i1 anim-fadeIn" src="~/assets/img/tech-info/g-standard.png" alt="">
|
|
|
|
<h2>{{ staticData.t8 }}</h2>
|
|
<p>{{ staticData.t9 }}</p>
|
|
<img class="i2 anim-fadeIn" src="~/assets/img/tech-info/DIN24537.png" alt="">
|
|
|
|
<h2>{{ staticData.t10 }}</h2>
|
|
<p>{{ staticData.t11 }}</p>
|
|
<p>{{ staticData.t12 }}</p>
|
|
<p>{{ staticData.t13 }}</p>
|
|
|
|
<ul>
|
|
<li v-for="item in $store.state.staticData.about.en.s4" :key="item.title">
|
|
<a :href="`/standards_pdf/${item.link.url}`" download target="_blank">{{ item.title }}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section class="s2">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h2 class="title">{{ staticData.t19 }}</h2>
|
|
<nuxt-link :to="{name: 'lang-products',params: {lang: $route.params.lang}}" class="btn btn-primary">{{ staticData.t20 }}</nuxt-link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<CustomersCommunication/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {fadeInAnimation} from "~/mixins/animations"
|
|
|
|
export default {
|
|
computed: {
|
|
staticData() {
|
|
return this.$store.state.staticData.gStandard[this.$route.params.lang]
|
|
}
|
|
},
|
|
mixins: [fadeInAnimation],
|
|
head() {
|
|
return {
|
|
title: this.staticData.title
|
|
}
|
|
}
|
|
}
|
|
</script>
|