You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
376 B

<template>
<video ref="video" :id="id" :src="src" @mouseleave="mouseleave" @mouseover="mouseover"></video>
</template>
<script setup lang="ts">
const props = defineProps({
id: {
type: String,
required: true
},
src: {
type: String,
required: true
},
})
const mouseover = () => {
}
const mouseleave = () => {
}
</script>
<style scoped>
</style>