mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
install vue-motion
This commit is contained in:
+7
-4
@@ -2,12 +2,15 @@ import { createApp } from "vue";
|
||||
import App from "./App.vue";
|
||||
import "./registerServiceWorker";
|
||||
import router from "./router";
|
||||
import { createPinia } from 'pinia'
|
||||
|
||||
import { createPinia } from "pinia";
|
||||
import { MotionPlugin } from "@vueuse/motion";
|
||||
|
||||
import "../src/assets/css/global.scss";
|
||||
|
||||
const app = createApp(App);
|
||||
app.use(createPinia())
|
||||
|
||||
app.use(createPinia());
|
||||
app.use(router);
|
||||
app.mount('#app');
|
||||
app.use(MotionPlugin);
|
||||
|
||||
app.mount("#app");
|
||||
|
||||
Reference in New Issue
Block a user