houzhongjian
2024-07-11 759b1c71011abd6b58c37d2566f3f3c208c2f1b2
提交 | 用户 | 时间
759b1c 1 <script>
H 2 export default {
3   created() {
4     const { params, query } = this.$route
5     const { path } = params
6     this.$router.replace({ path: '/' + path, query })
7   },
8   render: function(h) {
9     return h() // avoid warning message
10   }
11 }
12 </script>