This repository has been archived on 2025-02-25. You can view files and clone it, but cannot push or open issues or pull requests.
fxfast-code/ruoyi-ui/src/views/redirect.vue

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>