[Vuejs]-Vue 2 watch fails for mixin data property, but works if the component has the data property

0👍

You need a lowercase s. sourceFile not SourceFile

watch: {
    'audioPlayer.sourceFile': function (nextFile) {
       console.log('new sourceFile');
       this.$data.file = nextFile;
    },
  }

Leave a comment