解决表格错位- 重新布局

84 阅读1分钟

1.png

  created() {
    this.$nextTick(() => {
      window.addEventListener('resize', () => {
        this.layoutTable()
      })
    })
  },


    layoutTable() {
      this.$nextTick(() => {
        if (this.$refs.table) {
          this.$refs.table.doLayout() // 重新布局解决表格错位
        }
      })
    },

重新布局 微信截图_20220528180007.png