TOPVERSE_Official/components/model/content.vue

13 lines
179 B
Vue
Raw Permalink Normal View History

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