0👍
One simple way around this is to use a Vue
instance for your isPlaying
variable to make it reactive:
let isPlaying = new Vue({
data: {
status: true
}
});
Here’s the JSFiddle: https://jsfiddle.net/289h9a88/
- [Vuejs]-Unable to understand how vue-router query params work
- [Vuejs]-Vue.js form file input Error in event handler
Source:stackexchange.com