liangzhiyuan001 d1d71355d6 first version
2022-09-15 14:21:11 +08:00

16 lines
353 B
Vue

<script>
import { defineComponent, h } from 'vue';
export default defineComponent({
created() {
// console.log('redirect', this.$route);
const { params, query } = this.$route;
const { path } = params;
this.$router.replace({ path: '/' + path, query });
},
render() {
return h('div'); // avoid warning message
}
});
</script>