2024-04-15 21:08:42 +08:00

16 lines
352 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>