2021-04-19 18:58:16 +08:00

12 lines
197 B
Vue

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