fix. api 변경 관련 로직 변경

This commit is contained in:
clkim
2025-10-22 11:14:07 +09:00
parent dc369e8065
commit 8e0cdc9478
10 changed files with 80 additions and 98 deletions

View File

@@ -10,7 +10,7 @@ const props = withDefaults(defineProps<Props>(), {
</script>
<template>
<video v-if="props.src">
<source :src="props.src" :type="`video/${props.type}`" v-bind="$attrs" />
<video v-if="props.src" v-bind="$attrs">
<source :src="props.src" :type="`video/${props.type}`" />
</video>
</template>