This commit is contained in:
2025-02-07 17:21:34 +08:00
commit d74cc374f3
605 changed files with 63164 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<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>