永康嘉持电器有限公司前端
小小儁爺
2025-03-03 ebe7bf1b9118958f6a93406305f5728bfd5d90c9
1
2
3
4
5
6
7
8
9
10
11
12
<script>
export default {
  activated() {   window.addEventListener('resize', this.getHeight)   this.getHeight() }, created() {
    const { params, query } = this.$route
    const { path } = params
    this.$router.replace({ path: '/' + path, query })
  },
  render: function(h) {
    return h() // avoid warning message
  }
}
</script>