🌱 数据有了,就差渲染了

This commit is contained in:
BTMuli
2023-06-30 14:42:48 +08:00
parent e59164e729
commit a05f31f4a5
6 changed files with 93 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
<template>
{{ props.modelValue }}
</template>
<script lang="ts" setup>
interface HtaTabUseProps {
modelValue: TGApp.Plugins.Hutao.Abyss.AvatarUse[];
data: TGApp.Sqlite.Character.AppData[];
}
const props = defineProps<HtaTabUseProps>();
</script>