mirror of
https://github.com/janishutz/MusicPlayer.git
synced 2026-09-10 22:35:25 +02:00
chore: skeleton for MusicKitJS abstractions
This commit is contained in:
+12
-9
@@ -1,12 +1,15 @@
|
||||
import { createApp } from 'vue'
|
||||
import { createPinia } from 'pinia'
|
||||
import App from './App.vue';
|
||||
import {
|
||||
createApp
|
||||
} from 'vue';
|
||||
import {
|
||||
createPinia
|
||||
} from 'pinia';
|
||||
import router from './router';
|
||||
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
const app = createApp( App );
|
||||
|
||||
const app = createApp(App)
|
||||
app.use( createPinia() );
|
||||
app.use( router );
|
||||
|
||||
app.use(createPinia())
|
||||
app.use(router)
|
||||
|
||||
app.mount('#app')
|
||||
app.mount( '#app' );
|
||||
|
||||
Reference in New Issue
Block a user