mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-18 10:18:14 +08:00
14 lines
387 B
Vue
14 lines
387 B
Vue
<template>
|
|
<TItemBox :data="props.modelValue as Record<string,string|number>" :size="props.size" model-value="calendar-weapon" display="inner" />
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import TItemBox from "../main/t-itembox.vue";
|
|
|
|
interface TibCalendarWeaponProps {
|
|
size: string,
|
|
modelValue: TGApp.App.Calendar.Item
|
|
}
|
|
|
|
const props = defineProps<TibCalendarWeaponProps>();
|
|
</script>
|