2.模拟限制宽高 【在要获取宽高的元素 上加 ref 属性】
<div style="width:600px;height:300px" ref="barparent" > </div>
3.获取宽高
console.log(‘this.$refs.barparent.clientWidth‘, this.$refs.barparent.bodyWidth) //宽度
console.log(‘this.$refs.barparent.offsetHeight‘, this.$refs.barparent.$el.offsetHeight) //高度
原文:https://www.cnblogs.com/qfcddl/p/13994997.html