32 lines
503 B
Vue
32 lines
503 B
Vue
|
|
<template>
|
||
|
|
<view class="fullHeight informationCenterPage">
|
||
|
|
<scroll-view class="smallHeight" scroll-y>
|
||
|
|
<headers2></headers2>
|
||
|
|
</scroll-view>
|
||
|
|
<footers2 tabIndex></footers2>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import footers2 from '../../components/footers/footers2.vue';
|
||
|
|
import headers2 from '../../components/headers/headers2.vue';
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
tabIndex: 1
|
||
|
|
}
|
||
|
|
},
|
||
|
|
components: {
|
||
|
|
footers2,
|
||
|
|
headers2
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
|
||
|
|
</style>
|