Removed references to pinia

This commit is contained in:
Fabio Manganiello 2022-12-04 12:58:23 +01:00
parent 7964405502
commit 67896b2380
2 changed files with 2 additions and 4 deletions

View file

@ -1,6 +1,5 @@
import { createApp } from "vue"; import { createApp } from "vue";
//import { createPinia } from "pinia";
import App from "./Popup.vue"; import App from "./Popup.vue";
const app = createApp(App) //.use(createPinia()); const app = createApp(App)
app.mount('#app') app.mount('#app')

View file

@ -1,6 +1,5 @@
import { createApp } from "vue"; import { createApp } from "vue";
//import { createPinia } from "pinia";
import App from "./App.vue"; import App from "./App.vue";
const app = createApp(App) // .use(createPinia()); const app = createApp(App)
app.mount('#app') app.mount('#app')