mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-07 02:46:55 +08:00
nothing
This commit is contained in:
11
src/views/manage/SongListManageView.vue
Normal file
11
src/views/manage/SongListManageView.vue
Normal 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>
|
||||
Reference in New Issue
Block a user