fix(website): Make videoId prop required in YouTubeVideo component

This commit is contained in:
Kazuki Yamada
2025-06-08 16:29:44 +09:00
parent 90c69bea91
commit 4fc616122e

View File

@@ -1,6 +1,9 @@
<script setup lang="ts"> <script setup lang="ts">
defineProps({ defineProps({
videoId: String, videoId: {
type: String,
required: true,
},
}) })
</script> </script>