Newer
Older
sxFront / src / views / redirect / index.vue
[wangxitong] on 29 Sep 2021 249 bytes first commit
<script>
export default {
  created() {
    const { params, query } = this.$route
    const { path } = params
    this.$router.replace({ path: '/' + path, query })
  },
  render: function(h) {
    return h() // avoid warning message
  }
}
</script>