mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
5ca5854594
Closes #815
16 lines
469 B
Vue
16 lines
469 B
Vue
<template>
|
|
<ErrorHandler v-if="response && response.error" :message="response.message" :error="response.error" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
activated() {
|
|
this.fetchJson(this.apiUrl() + "/clips/" + this.$route.params.clipId).then(response => {
|
|
this.response = response;
|
|
if (this.response.videoId) {
|
|
this.$router.push(`/watch?v=${this.response.videoId}`);
|
|
}
|
|
});
|
|
},
|
|
};
|
|
</script>
|