Piped/src/components/VideoRedirect.vue
2021-07-20 02:55:43 +05:30

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