logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

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>却没有使用它的子组件而报错,加上子组件就

#javascript#前端#vue.js
VUE在setup中使用data的数据

使用getCurrentInstance方法获取data内的数据import { getCurrentInstance } from "vue";export default {data() {return {b: "data数据",};},setup() {const datab = getCurrentInstance();async function getdata(){let dataa=

#javascript#前端#vue.js
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>却没有使用它的子组件而报错,加上子组件就

#javascript#前端#vue.js
TypeError load() missing 1 required positional argument ‘Loader‘

最近使用yaml.load()时报错 TypeError: load() missing 1 required positional argument: ‘Loader’记录原因:YAML 5.1版本后弃用了yaml.load(file)这个用法,因为觉得很不安全,5.1版本之后就修改了需要指定Loader,通过默认加载器(FullLoader)禁止执行任意函数,该load函数也变得更加安全用以下

#javascript#前端#vue.js
到底了