yyt
8 天以前 0cceb649e1dc443c2a91d26d81eacb0867c96db3
提交 | 用户 | 时间
0cceb6 1 <script>
Y 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>