mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2026-04-06 07:25:05 +08:00
13 lines
305 B
Vue
13 lines
305 B
Vue
<template>
|
|
<div class="mys-post-unknown">
|
|
<code class="mys-post-unknown-code">{{ JSON.stringify(props.data, null, 2) }}</code>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
interface TpUnknownProps {
|
|
data: TGApp.Plugins.Mys.SctPost.Empty;
|
|
}
|
|
|
|
const props = defineProps<TpUnknownProps>();
|
|
</script>
|