12 lines
197 B
Vue
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>
|