mirror of
https://github.com/janishutz/MusicPlayer.git
synced 2026-09-10 14:25:24 +02:00
16 lines
237 B
TypeScript
16 lines
237 B
TypeScript
import App from './App.vue';
|
|
import {
|
|
createApp
|
|
} from 'vue';
|
|
import {
|
|
createPinia
|
|
} from 'pinia';
|
|
import router from './router';
|
|
|
|
const app = createApp( App );
|
|
|
|
app.use( createPinia() );
|
|
app.use( router );
|
|
|
|
app.mount( '#app' );
|