Removed references to pinia
This commit is contained in:
parent
7964405502
commit
67896b2380
2 changed files with 2 additions and 4 deletions
|
@ -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')
|
||||||
|
|
|
@ -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')
|
||||||
|
|
Loading…
Reference in a new issue