简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
vue+element-ui 的项目报这个错:Cannot read properties of null (reading 'setAttribute')或者Cannot read property 'disabled' of null 报错是因为我们使用了element的组件<el-dropdown> </el-dropdown>却没有使用它的子组件而报错,加上子组件就
使用getCurrentInstance方法获取data内的数据import { getCurrentInstance } from "vue";export default {data() {return {b: "data数据",};},setup() {const datab = getCurrentInstance();async function getdata(){let dataa=
vue+element-ui 的项目报这个错:Cannot read properties of null (reading 'setAttribute')或者Cannot read property 'disabled' of null 报错是因为我们使用了element的组件<el-dropdown> </el-dropdown>却没有使用它的子组件而报错,加上子组件就
最近使用yaml.load()时报错 TypeError: load() missing 1 required positional argument: ‘Loader’记录原因:YAML 5.1版本后弃用了yaml.load(file)这个用法,因为觉得很不安全,5.1版本之后就修改了需要指定Loader,通过默认加载器(FullLoader)禁止执行任意函数,该load函数也变得更加安全用以下