mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
19 lines
339 B
Vue
19 lines
339 B
Vue
<template>
|
|
<video
|
|
:src="file.data.attributes.file_url"
|
|
class="video"
|
|
:class="{ 'file-shadow': !$isMobile() }"
|
|
controlsList="nodownload"
|
|
disablePictureInPicture
|
|
playsinline
|
|
controls
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Video',
|
|
props: ['file'],
|
|
}
|
|
</script>
|