Piped/src/components/VideoRedirect.vue

17 lines
323 B
Vue

<template>
<div>{{ $t("actions.loading") }}</div>
</template>
<script>
export default {
activated() {
const videoId = this.$route.params.videoId;
if (videoId)
this.$router.push({
path: "/watch",
query: { v: videoId },
});
},
};
</script>