TOPVERSE_Official/components/model/content.vue

12 lines
149 B
Vue
Raw Normal View History

2023-05-26 19:53:05 +08:00
<script setup lang="ts">
$defineProps<{
src: string
}>()
</script>
<template>
<ClientOnly>
<Model :src="src" />
</ClientOnly>
</template>