@iamproperty/components 2.7.3 → 2.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.common.js +18 -6
- package/dist/components.common.js.map +1 -1
- package/dist/components.umd.js +18 -6
- package/dist/components.umd.js.map +1 -1
- package/dist/components.umd.min.js +1 -1
- package/dist/components.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Nav/Nav.vue +15 -3
package/package.json
CHANGED
|
@@ -59,15 +59,15 @@
|
|
|
59
59
|
<div class="container">
|
|
60
60
|
<div class="row">
|
|
61
61
|
<div class="col nav__logo">
|
|
62
|
-
<a href="
|
|
62
|
+
<a :href="propertylink" :class="`text-decoration-none mb-0 ${logo=='property'?'current':''}`">
|
|
63
63
|
<Logo id="property" :path="logopath" class="pb-0 pe-0"></Logo>
|
|
64
64
|
</a>
|
|
65
65
|
|
|
66
|
-
<a href="
|
|
66
|
+
<a :href="movebutlerlink" :class="`text-decoration-none mb-0 ${logo=='movebutler'?'current':''}`">
|
|
67
67
|
<Logo id="movebutler" :path="logopath" class="pb-0 pe-0"></Logo>
|
|
68
68
|
</a>
|
|
69
69
|
|
|
70
|
-
<a href="
|
|
70
|
+
<a :href="iamsoldlink" :class="`text-decoration-none mb-0 ${logo=='sold'?'current':''}`">
|
|
71
71
|
<Logo id="sold" :path="logopath" class="pb-0 pe-0"></Logo>
|
|
72
72
|
</a>
|
|
73
73
|
</div>
|
|
@@ -137,6 +137,18 @@ export default {
|
|
|
137
137
|
btntext: {
|
|
138
138
|
type: String,
|
|
139
139
|
required: false
|
|
140
|
+
},
|
|
141
|
+
propertylink: {
|
|
142
|
+
type: String,
|
|
143
|
+
required: false
|
|
144
|
+
},
|
|
145
|
+
movebutlerlink: {
|
|
146
|
+
type: String,
|
|
147
|
+
required: false
|
|
148
|
+
},
|
|
149
|
+
iamsoldlink: {
|
|
150
|
+
type: String,
|
|
151
|
+
required: false
|
|
140
152
|
}
|
|
141
153
|
},
|
|
142
154
|
data () {
|