|
Vue.set(this.mutations, mutation.type + " | " + this.timeNow(), mutation.payload); |
Looks like this expects Vue to be on the window, if it's not it bombs out here. Should be pretty easy to change it to use this.$set instead or import Vue from "vue" at top of file.
electron-vue-debugger/src/NavTree.vue
Line 38 in eb1fe91
Looks like this expects Vue to be on the window, if it's not it bombs out here. Should be pretty easy to change it to use
this.$setinstead orimport Vue from "vue"at top of file.