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.
|
<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>
|