mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-12-17 07:40:27 +05:30
18 lines
307 B
Vue
18 lines
307 B
Vue
|
<template>
|
||
|
<div>Loading...</div>
|
||
|
</template>
|
||
|
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
activated() {
|
||
|
const videoId = this.$route.params.videoId;
|
||
|
if (videoId)
|
||
|
this.$router.push({
|
||
|
path: "/watch",
|
||
|
query: { v: videoId },
|
||
|
});
|
||
|
},
|
||
|
};
|
||
|
</script>
|