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.
 
 

28 lines
671 B

export default {
template: `<video :controls="controls" :autoplay="autoplay" :muted="muted" :src="computed_src" />`,
props: {
controls: Boolean,
autoplay: Boolean,
muted: Boolean,
src: String,
},
data: function () {
return {
computed_src: undefined,
};
},
mounted() {
setTimeout(() => this.compute_src(), 0); // NOTE: wait for window.path_prefix to be set in app.mounted()
},
updated() {
this.compute_src();
},
methods: {
compute_src() {
this.computed_src = (this.src.startsWith("/") ? window.path_prefix : "") + this.src;
},
seek(seconds) {
this.$el.currentTime = seconds;
},
},
};