mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-26 04:40:40 +00:00
17 lines
366 B
JavaScript
17 lines
366 B
JavaScript
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
import "./registerServiceWorker";
|
|
import router from "./router";
|
|
import { createPinia } from "pinia";
|
|
import { MotionPlugin } from "@vueuse/motion";
|
|
|
|
import "../src/assets/css/global.scss";
|
|
|
|
const app = createApp(App);
|
|
|
|
app.use(createPinia());
|
|
app.use(router);
|
|
app.use(MotionPlugin);
|
|
|
|
app.mount("#app");
|