init():南钢程序前后端分离

This commit is contained in:
Allenxy
2024-09-13 16:10:08 +08:00
parent 4c5f5493a5
commit fc11668842
718 changed files with 67569 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>