vue 带标签页 后台管理软件基础框架
longyvfengyun
2023-11-10 e181e737bd5c20e6962a699b45cfb4444a315209
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>