2021-04-19 18:50:34 +08:00

11 lines
168 B
Vue

<script>
export default {
created() {
this.$router.replace(this.$route.fullPath.replace(/^\/redirect/, ''));
},
render(h) {
return h();
},
};
</script>