mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2026-05-08 00:24:06 +08:00
10 lines
238 B
Vue
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>
|