|
@@ -40,15 +40,15 @@
|
40
|
40
|
<div class="accordion" id="accordionExample">
|
41
|
41
|
<div class="card" v-for="(region, r) in detailedRegion" :key="r">
|
42
|
42
|
<a
|
43
|
|
- class="btn-link"
|
|
43
|
+ class="btn btn-b-n"
|
44
|
44
|
type="button"
|
45
|
45
|
data-toggle="collapse"
|
46
|
46
|
:data-target="'#collapse' + region.id"
|
47
|
47
|
aria-expanded="false"
|
48
|
48
|
:aria-controls="'collapse' + region.id"
|
49
|
49
|
>
|
50
|
|
- <div class="card-header" :id="'header' + region.id">
|
51
|
|
- <h4 class="mb-0">{{ region.regionName }}</h4>
|
|
50
|
+ <div :id="'header' + region.id">
|
|
51
|
+ <h5 class="mb-0">{{ region.regionName }}</h5>
|
52
|
52
|
</div>
|
53
|
53
|
</a>
|
54
|
54
|
<div
|
|
@@ -74,18 +74,18 @@
|
74
|
74
|
</section>
|
75
|
75
|
</template>
|
76
|
76
|
<script>
|
77
|
|
-import { mapState, mapActions } from 'vuex';
|
|
77
|
+import { mapState, mapActions } from "vuex";
|
78
|
78
|
|
79
|
79
|
export default {
|
80
|
|
- name: 'TimeshareToBuy',
|
|
80
|
+ name: "TimeshareToBuy",
|
81
|
81
|
mounted() {
|
82
|
82
|
this.getRegions();
|
83
|
83
|
},
|
84
|
84
|
computed: {
|
85
|
|
- ...mapState('timeshareBuy', ['detailedRegion']),
|
|
85
|
+ ...mapState("timeshareBuy", ["detailedRegion"])
|
86
|
86
|
},
|
87
|
87
|
methods: {
|
88
|
|
- ...mapActions('timeshareBuy', ['getRegions']),
|
89
|
|
- },
|
|
88
|
+ ...mapActions("timeshareBuy", ["getRegions"])
|
|
89
|
+ }
|
90
|
90
|
};
|
91
|
91
|
</script>
|