index.vue 265 字节
Newer Older
1 2 3
<script>
export default {
  beforeCreate() {
P
Pan 已提交
4 5 6
    const { params, query } = this.$route
    const { path } = params
    this.$router.replace({ path: '/' + path, query })
7
    return
8 9 10 11 12 13
  },
  render: function(h) {
    return h() // avoid warning message
  }
}
</script>