[Vuejs]-How to `compute` outer file?

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/

Leave a comment