This commit is contained in:
2023-06-11 08:47:10 +08:00
parent 2e14596be6
commit 1b6bb7c248
15 changed files with 395 additions and 134 deletions

View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
import { SongsInfo } from '@/api/api-models'
import SongList from '@/components/SongList.vue'
import { ref } from 'vue'
const songs = ref<SongsInfo[]>([])
</script>
<template>
<SongList :songs="songs" />
</template>