mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
16 lines
319 B
Vue
16 lines
319 B
Vue
<template>
|
|
<div v-t="'actions.loading'" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
activated() {
|
|
const videoId = this.$route.params.videoId;
|
|
if (videoId)
|
|
this.$router.replace({
|
|
path: "/watch",
|
|
query: { v: videoId },
|
|
});
|
|
},
|
|
};
|
|
</script>
|