vue获取this.$refs['ref_cloudTwoBox'].offsetHeight为0,如何解决
时间: 2023-06-04 08:03:36 浏览: 797
this.$toast() 了解一下?
您可以尝试在 mounted 钩子函数中使用 $nextTick 方法来获取元素的实际高度,代码如下:
mounted() {
this.$nextTick(() => {
const height = this.$refs['ref_cloudTwoBox'].offsetHeight;
console.log(height);
});
}
阅读全文