VUE报错:TypeError: Cannot read properties of null (reading ‘setAttribute‘)

2,935 阅读1分钟

微信图片_20220707164147.png

这个报错的发生在element的dropdown组件里,那就寻找项目中使用了该组件的地方。 组件报错在:

1657184438846.png

Cannot read properties of null (reading ‘setAttribute‘)的本身意思是因为dom还没加载完成,无法使用正确使用这个setAttribute这个属性。分析一下应该是没有找到 el-dropdown-item这个子组件。

78E8DDDC-73D2-4bd2-BE9A-1D530171B9FF.png 仔细看了下代码,应该是v-if的原因,因为v-if的惰性渲染,el-dropdown里面是没有 el-dropdown-item,所以应该换成v-show
换成v-show,ok了~