bonus-ui/src/views/redirect.vue

13 lines
256 B
Vue
Raw Normal View History

2024-06-26 15:11:05 +08:00
<script>
export default {
created() {
2024-11-12 10:28:11 +08:00
const { params, query } = this.$route;
const { path } = params;
this.$router.replace({ path: "/" + path, query });
2024-06-26 15:11:05 +08:00
},
2024-11-12 10:28:11 +08:00
render: function (h) {
return h(); // avoid warning message
},
};
2024-06-26 15:11:05 +08:00
</script>