iview table 高度设置一直无效,一直找不到原因

  <Table  size="small"  :heigth="tableHeight" :columns="minuteColumns" :data="minuteData" ref="table"></Table>          

    mounted(){
        var that=this;
        setTimeout(function () {
         that.tableHeight = window.innerHeight - 48;
          console.log('that.tableHeight',that.tableHeight)
        },400);
    },
 
后来让同事帮忙,惊讶的发现 height 拼写错误!

相关文章:

  • 2021-11-03
  • 2022-12-23
  • 2021-11-03
  • 2022-12-23
  • 2021-08-08
  • 2022-12-23
  • 2021-07-27
猜你喜欢
  • 2021-05-17
  • 2022-12-23
  • 2021-12-07
  • 2021-11-04
  • 2021-11-08
  • 2022-12-23
  • 2021-12-23
相关资源
相似解决方案