Vue Cannot read properties of null (reading ‘setAttribute‘) 报错
vue+element-ui 的项目报这个错:Cannot read properties of null (reading 'setAttribute')或者Cannot read property 'disabled' of null 报错是因为我们使用了element的组件<el-dropdown> </el-dropdown>却没有使用它的子组件而报错,加上子组件就
·
vue+element-ui 的项目报这个错:
Cannot read properties of null (reading 'setAttribute')
或者
Cannot read property 'disabled' of null 报错
是因为我们使用了element的组件
<el-dropdown> </el-dropdown>
却没有使用它的子组件而报错,
加上子组件就好了:
<el-dropdown>
<el-dropdown-menu></el-dropdown-menu>
</el-dropdown>
更多推荐
已为社区贡献2条内容
所有评论(0)