其他分享
首页 > 其他分享> > TypeError: Cannot read properties of null (reading ‘getAttribute‘)

TypeError: Cannot read properties of null (reading ‘getAttribute‘)

作者:互联网


在使用第三方库的tab栏切换时,我们需要带调用里面的dom元素时

遇到这种问题时,是因为我们使用了第三方的库 获取不到dom元素,在页面渲染的时候我们获取不到第三方库的dom元素所致,和vue的生命周期函数有关

解决方法

需要使用vue的异步加载方法this.$nextTick(()=>{})

 

 2.我们需要监听第三方库的click或者change事件

 

 

参考:https://blog.csdn.net/YCQNB_/article/details/124767309

标签:vue,dom,read,获取,元素,我们,getAttribute,TypeError,第三方
来源: https://www.cnblogs.com/ckfuture/p/16523279.html