是否可以监视组件元素clientWidth(this。$ el.clientWidth)的变化?
就像是:

 this.$watch(
        () => {
            return this.$el.clientWidth;
        },
        (newWidth, oldWidth) => {
            console.log(newWidth);
        }
    )

最佳答案

我正在调查同样的问题。
我认为依赖HTML生命周期的解决方案在某些情况下是有效的。
我很高兴现阶段的解决方案能为您服务。

mousemove (e) {
    this.clientWidth = this.$el.clientWidth
}

关于javascript - Vue-注意此更改。$ el.clientWidth,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48522733/

10-13 01:54