diff --git a/src/popup/main.ts b/src/popup/main.ts index 8b15756..cf39580 100644 --- a/src/popup/main.ts +++ b/src/popup/main.ts @@ -1,6 +1,5 @@ import { createApp } from "vue"; -//import { createPinia } from "pinia"; import App from "./Popup.vue"; -const app = createApp(App) //.use(createPinia()); +const app = createApp(App) app.mount('#app') diff --git a/src/viewer/main.ts b/src/viewer/main.ts index 38e466c..ae74f1c 100644 --- a/src/viewer/main.ts +++ b/src/viewer/main.ts @@ -1,6 +1,5 @@ import { createApp } from "vue"; -//import { createPinia } from "pinia"; import App from "./App.vue"; -const app = createApp(App) // .use(createPinia()); +const app = createApp(App) app.mount('#app')