fix: wrong eventBus.js path and non-existant method call (#971)

* fix: eventBus.js path reference

* fix: non-existant method call
This commit is contained in:
Felipe Martin 2024-08-28 07:43:57 +02:00 committed by GitHub
parent 9a113af6cb
commit a4304bc19b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View file

@ -42,7 +42,7 @@
import pageHome from "./assets/js/page/home.js";
import pageSetting from "./assets/js/page/setting.js";
import customDialog from "./assets/js/component/dialog.js";
import EventBus from "../assets/js/component/eventBus.js";
import EventBus from "./assets/js/component/eventBus.js";
Vue.prototype.$bus = EventBus;
var app = new Vue({

View file

@ -150,7 +150,6 @@
},
mounted() {
// Load setting
this.loadSetting();
localStorage.removeItem("shiori-account");
localStorage.removeItem("shiori-token");