VueTube/NUXT/pages/watch.vue

16 lines
232 B
Vue

<template>
<div>
<video controls :src="vidSrc" width="100%" height="300vh" />
</div>
</template>
<script>
export default {
data() {
return {
vidSrc: "https://api.celeste.photos/squish.mp4"
}
}
}
</script>