This commit is contained in:
huzhushan 2021-04-19 18:58:16 +08:00
parent bbf03e66fb
commit 08238c4a7d

View File

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