VueTube/NUXT/pages/watch.vue

16 lines
232 B
Vue
Raw Normal View History

2022-02-24 22:29:34 +00:00
<template>
<div>
<video controls :src="vidSrc" width="100%" height="300vh" />
</div>
</template>
<script>
export default {
data() {
return {
2022-03-04 02:25:30 +00:00
vidSrc: "https://api.celeste.photos/squish.mp4"
2022-02-24 22:29:34 +00:00
}
}
}
</script>