This commit is contained in:
‘937886381’
2025-11-12 16:56:14 +08:00
commit 1ea62af1d6
1135 changed files with 109385 additions and 0 deletions

14
src/views/redirect.vue Normal file
View File

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