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