|
@@ -12,6 +12,7 @@
|
12
|
12
|
:showSort="false"
|
13
|
13
|
/>
|
14
|
14
|
<section v-else id="intro" style="margin-bottom:-50px">
|
|
15
|
+ <br/>
|
15
|
16
|
<div class="container">
|
16
|
17
|
<div class="row d-flex justify-content-center">
|
17
|
18
|
<div class="col-md-8">
|
|
@@ -29,7 +30,7 @@
|
29
|
30
|
:items="1"
|
30
|
31
|
:autoplay="true"
|
31
|
32
|
:loop="true"
|
32
|
|
- id="intro-carousel"
|
|
33
|
+ id="intro-carousel_residential"
|
33
|
34
|
style="margin-top:-50px"
|
34
|
35
|
:responsive="{ 0: { items: 1, nav: false }, 600: { items: 1, nav: false } }"
|
35
|
36
|
>
|
|
@@ -48,11 +49,13 @@
|
48
|
49
|
/* eslint-disable */
|
49
|
50
|
import { mapState, mapActions } from "vuex";
|
50
|
51
|
import propertyCard from "../propertyCardSearch";
|
|
52
|
+import carousel from "vue-owl-carousel";
|
51
|
53
|
|
52
|
54
|
export default {
|
53
|
55
|
name: "propertysearch",
|
54
|
56
|
components: {
|
55
|
|
- propertyCard
|
|
57
|
+ propertyCard,
|
|
58
|
+ carousel
|
56
|
59
|
},
|
57
|
60
|
data() {
|
58
|
61
|
return {
|
|
@@ -107,6 +110,11 @@ export default {
|
107
|
110
|
ParamsChanged() {
|
108
|
111
|
return null;
|
109
|
112
|
}
|
|
113
|
+ },
|
|
114
|
+ beforeDestroy(){
|
|
115
|
+ this.propertySearch.city = "All";
|
|
116
|
+ this.propertySearch.suburb = "All";
|
|
117
|
+ this.propertySearch.province = "All";
|
110
|
118
|
}
|
111
|
119
|
};
|
112
|
120
|
</script>
|