33 lines
558 B
Vue
33 lines
558 B
Vue
|
<template>
|
||
|
<div class="video message-text__wrap">
|
||
|
<video :src="url" muted playsInline @click="onClick" />
|
||
|
<woot-modal :show.sync="show" :on-close="onClose">
|
||
|
<video :src="url" controls playsInline class="modal-video" />
|
||
|
</woot-modal>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
url: {
|
||
|
type: String,
|
||
|
required: true,
|
||
|
},
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
show: false,
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
onClose() {
|
||
|
this.show = false;
|
||
|
},
|
||
|
onClick() {
|
||
|
this.show = true;
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|