0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-01 01:12:39 +00:00
VueTube/NUXT/pages/watch.vue
2022-03-03 21:25:30 -05:00

15 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>