Fixes do masonry re-layout strategy.
This commit is contained in:
parent
22fb17a1e2
commit
544dc64bcb
|
@ -102,7 +102,7 @@ export default {
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
masonry: false,
|
masonry: false,
|
||||||
shouldUseLegacyMasonyCols: false
|
shouldUseLegacyMasonyCols: false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -123,6 +123,13 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
immediate: true
|
immediate: true
|
||||||
|
},
|
||||||
|
isFiltersMenuCompressed: {
|
||||||
|
handler() {
|
||||||
|
if (this.masonry !== false)
|
||||||
|
this.masonry.layout();
|
||||||
|
},
|
||||||
|
immediate: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
|
|
@ -176,6 +176,13 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
immediate: true
|
immediate: true
|
||||||
|
},
|
||||||
|
isFiltersMenuCompressed: {
|
||||||
|
handler() {
|
||||||
|
if (this.masonry !== false)
|
||||||
|
this.masonry.layout();
|
||||||
|
},
|
||||||
|
immediate: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
beforeUnmount() {
|
beforeUnmount() {
|
||||||
|
|
Loading…
Reference in New Issue