feat:【ele】【ai】音乐的迁移

This commit is contained in:
YunaiV
2025-11-14 22:22:43 +08:00
parent d056629332
commit 1cbd4033b8
10 changed files with 542 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<script lang="ts" setup>
defineOptions({ name: 'AiMusicTitleIndex' });
defineProps({
title: {
type: String,
default: '',
},
desc: {
type: String,
default: '',
},
});
</script>
<template>
<div class="mb-3">
<div class="flex items-center justify-between text-gray-600">
<span>{{ title }}</span>
<slot name="extra"></slot>
</div>
<div class="my-2 text-xs text-gray-400">
{{ desc }}
</div>
<slot></slot>
</div>
</template>