-
懒羊羊
2024-04-12 c5e9c5922da7de2bf6df6dce42e7162dbe5cdd2d
提交 | 用户 | 时间
e57a89 1 <script>
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>