mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
13 lines
292 B
JavaScript
13 lines
292 B
JavaScript
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
import "./registerServiceWorker";
|
|
import router from "./router";
|
|
import { createPinia } from 'pinia'
|
|
|
|
|
|
import "../src/assets/css/global.scss";
|
|
|
|
const app = createApp(App);
|
|
app.use(createPinia())
|
|
app.use(router);
|
|
app.mount('#app'); |