Newer
Older
casic-smartcity-well-front / src / views / redirect / index.vue
[wangxitong] on 8 Jul 2021 254 bytes mars3d总览
<script>
export default {
  beforeCreate() {
    const { params, query } = this.$route
    const { path } = params
    this.$router.replace({ path: '/' + path, query })
  },
  render: function(h) {
    return h() // avoid warning message
  }
}
</script>