swap to generated api code and composables

This commit is contained in:
2025-05-21 16:44:23 +02:00
parent b9e865780a
commit a7a6a9b65d
29 changed files with 3307 additions and 517 deletions

View File

@@ -1,7 +1,5 @@
<script setup lang="ts">
import { ref, defineProps } from 'vue'
import { useAudioStore } from '@/stores/audioStore';
import { useUserStore } from '@/stores/userStore';
import { useAudio } from '@/composables/useAudio';
import type { Song } from '@/script/types';
const props = defineProps<{
@@ -10,8 +8,7 @@ const props = defineProps<{
info?: string,
border?: string,
}>();
const userStore = useUserStore();
const audioStore = useAudioStore();
const audioStore = useAudio();
function updateSong() {