0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-09 04:55:07 +00:00
VueTube/NUXT/pages/watch.vue
2022-03-17 18:42:50 -04:00

20 lines
320 B
Vue

<template>
<div>
<video controls autoplay :src="vidSrc" width="100%" height="300vh" />
{{ vidSrc }}
</div>
</template>
<script>
export default {
data() {
return {
vidSrc: ""
}
},
mounted() {
const { v } = this.$route.query
console.log(v, this.$youtube.getVid(v))
}
}
</script>