mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 01:12:39 +00:00
15 lines
232 B
Vue
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>
|