0👍
Shameless plug, I created vue-smooth-reflow for this exact use case.
Here’s a demo: https://jsfiddle.net/guanzo/snyvoxec/1/
new Vue({
el: '#demo',
mixins: [SmoothReflow],
data: {
show: true
},
mounted(){
this.$smoothReflow()
},
methods: {
loadData() {
this.show = !this.show
setTimeout(() => {
this.show = !this.show
}, 1000);
}
}
})
- [Vuejs]-Cannot vertically align Label inside GridLayout in NativeScript
- [Vuejs]-How to manage the logged in state of user in nativescript vue?
Source:stackexchange.com