I removed this and stuff still works, therefore it must not have been important

This commit is contained in:
Tamius Han 2020-12-03 01:05:57 +01:00
parent 145b237701
commit 357b7a0365

View File

@ -123,10 +123,6 @@ class UwUi {
return;
}
try {
// Vue.prototype.$browser = global.browser;
// Vue.use(Vuex);
this.vuexStore = createStore({
plugins: [
VuexWebExtensions({
@ -171,9 +167,6 @@ class UwUi {
}
}
});
} catch (e) {
console.error("Ultrawidify failed to initialize vue. Error:", e);
}
// make sure we don't init twice
this.vueInitiated = true;
@ -194,7 +187,6 @@ class UwUi {
try {
createApp(LoggerUi)
.component('LoggerUi', LoggerUi)
.use(this.vuexStore)
.mount(`#${uwid}`);