其他分享
首页 > 其他分享> > vue项目中动态控制table高度

vue项目中动态控制table高度

作者:互联网

vue项目中动态控制table高度
給table加上如下属性
:max-height="maxHeight"
data中定义最大高度
maxHeight:''
在钩子函数中改变最大高度
mounted(){ this.$nextTick(()=>{ this.maxHeight = document.body.offsetHeight - this.$refs.tabel.$el.getBoundingClientRect().top - 70 }) },

标签:body,vue,高度,maxHeight,动态控制,table
来源: https://blog.csdn.net/weixin_45757442/article/details/120782040