可以在mounted中绑定scroll事件来处理 mounted: { // 首先通过$refs获取dom元素 this.textArea = this.$refs.viewTextArea; // 监听这个dom的scroll事件 this.textArea.addEventListener('scroll', () => {}, true); }
可以在
mounted
中绑定scroll
事件来处理