KindergartenUI/src/views/redirect.vue
zhuangyuanke a0105c7154 0
2022-07-26 13:36:39 +08:00

13 lines
249 B
Vue

<script>
export default {
created() {
const { params, query } = this.$route
const { path } = params
this.$router.replace({ path: '/' + path, query })
},
render: function(h) {
return h() // avoid warning message
}
}
</script>