mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2026-05-12 01:45:12 +08:00
🌱 数据有了,就差渲染了
This commit is contained in:
11
src/components/hutaoAbyss/hta-tab-hold.vue
Normal file
11
src/components/hutaoAbyss/hta-tab-hold.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<template>
|
||||
{{ props.modelValue }}
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
interface HtaTabHoldProps {
|
||||
modelValue: TGApp.Plugins.Hutao.Abyss.AvatarHold[];
|
||||
data: TGApp.Sqlite.Character.AppData[];
|
||||
}
|
||||
|
||||
const props = defineProps<HtaTabHoldProps>();
|
||||
</script>
|
||||
11
src/components/hutaoAbyss/hta-tab-team.vue
Normal file
11
src/components/hutaoAbyss/hta-tab-team.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<template>
|
||||
{{ props.modelValue }}
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
interface HtaTabTeamProps {
|
||||
modelValue: TGApp.Plugins.Hutao.Abyss.TeamCombination[];
|
||||
data: TGApp.Sqlite.Character.AppData[];
|
||||
}
|
||||
|
||||
const props = defineProps<HtaTabTeamProps>();
|
||||
</script>
|
||||
11
src/components/hutaoAbyss/hta-tab-up.vue
Normal file
11
src/components/hutaoAbyss/hta-tab-up.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<template>
|
||||
{{ props.modelValue }}
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
interface HtaTabUpProps {
|
||||
modelValue: TGApp.Plugins.Hutao.Abyss.AvatarUp[];
|
||||
data: TGApp.Sqlite.Character.AppData[];
|
||||
}
|
||||
|
||||
const props = defineProps<HtaTabUpProps>();
|
||||
</script>
|
||||
11
src/components/hutaoAbyss/hta-tab-use.vue
Normal file
11
src/components/hutaoAbyss/hta-tab-use.vue
Normal 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>
|
||||
Reference in New Issue
Block a user