Files
TeyvatGuide/src/components/pageAnno/ta-table.vue
2024-12-13 16:15:01 +08:00

10 lines
238 B
Vue

<template>
<div v-html="props.data.insert.table" />
</template>
<script lang="ts" setup>
type TaTableType = { insert: { table: string } };
type TaTableProps = { data: TaTableType };
const props = defineProps<TaTableProps>();
</script>