2018-02-04 21:49:43 +00:00
|
|
|
<ModalDialog :shown>
|
2018-01-21 03:19:24 +00:00
|
|
|
<video poster="{{poster}}"
|
|
|
|
src="{{src}}"
|
|
|
|
width="{{width}}"
|
|
|
|
height="{{height}}"
|
2018-01-21 18:32:18 +00:00
|
|
|
aria-label="Video: {{description || ''}}"
|
2018-01-21 03:19:24 +00:00
|
|
|
controls
|
|
|
|
/>
|
2018-02-04 21:49:43 +00:00
|
|
|
</ModalDialog>
|
2018-01-21 03:19:24 +00:00
|
|
|
<style>
|
2018-02-04 21:49:43 +00:00
|
|
|
:global(.modal-dialog video) {
|
2018-01-21 03:19:24 +00:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
2018-02-04 21:49:43 +00:00
|
|
|
import ModalDialog from '../ModalDialog.html'
|
2018-01-21 03:19:24 +00:00
|
|
|
|
|
|
|
export default {
|
2018-02-04 21:49:43 +00:00
|
|
|
components: {
|
|
|
|
ModalDialog
|
2018-01-21 03:19:24 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2018-02-04 21:49:43 +00:00
|
|
|
async show() {
|
|
|
|
this.set({shown: true})
|
2018-01-21 03:19:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|