Files
chopin-frontend/src/App.vue
2025-08-29 00:22:08 +02:00

8 lines
207 B
Vue

<template>
<router-view/>
</template>
<script setup>
import { useGlobalStore } from '@/stores/globalStore';
const globalStore = useGlobalStore();
console.log("Subsonics Chopin - Welcome");
</script>