Question.vue
858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<template>
<section class="wallet-question">
<Header :title="title" :meaushow='meaushow'></Header>
<div class="question-content">
222
</div>
</section>
</template>
<script>
import Vue from 'vue';
import {mapState} from 'vuex'
import Header from '@/views/common/Header.vue';
export default {
name: 'WalletQuestion',
data() {
return {
title:"常见问题",
meaushow:true,
}
},
computed: {
...mapState({
})
},
watch: {
},
created() {
},
methods: {
},
components: {
Header
}
}
</script>
<style scoped>
@import "../../assets/css/wallet/wallet.css";
</style>