• This project
    • Loading...
  • Sign in

Fedex / imac-vue

Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • imac-vue
  • src
  • views
  • redirect.vue
  • jinhui.wang's avatar
    ver:1.4.0,增加数据字典/虚拟航班维护页面,增加航班预审页面,修改输入框大小,状态,文本修正 · 1e3b2826
    1e3b2826
    jinhui.wang authored 2022-07-11 14:51:22 +0800
redirect.vue 250 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
<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>