mirror of
https://github.com/xlmnxp/extractify.zip.git
synced 2024-11-24 01:24:35 +03:00
18 lines
331 B
Vue
18 lines
331 B
Vue
{7ed5cf270e4b91e6fbef07ed968989c5b5740d4f true 331 video-player.vue 0xc001e07420}
<script lang="ts" setup>
|
|
import 'vue-plyr/dist/vue-plyr.css';
|
|
// @ts-ignore
|
|
import VuePlyr from 'vue-plyr';
|
|
|
|
interface Props {
|
|
src: string
|
|
}
|
|
|
|
let { src } = defineProps<Props>();
|
|
</script>
|
|
<template>
|
|
<VuePlyr>
|
|
<video controls playsinline>
|
|
<source :src="src" />
|
|
</video>
|
|
</VuePlyr>
|
|
</template> |