ElementPlus里的类型别名声明及使用

el-scrollbar


import type { ElScrollbar } from 'element-plus';
const scrollbarRef = ref>();
scrollbarRef.value!.setScrollTop(value)

el-form


import type { ElForm } from 'element-plus';
type FormInstance = InstanceType;
const ruleFormRef = ref();
ruleFormRef.value!.resetFields();

el-table


import type { ElTable } from "element-plus";
const multipleTable = ref>();
multipleTable.value!.clearSelection();

el-input

import type { ElInput } from "element-plus";

从上面可已看出,当使用ts开发element-plus项目时,遇到需要使用ref的情况时,想要用到组件自身的方法
例如表单的校验时:

ruleFormRef.value!.validate();

完全可以使用element-plus组件自带的类型别名绑定ref来调用组件自身的方法,且不会出错。
而其类型则是类似以下这种格式的,图为引入element-plus单组件的文字。

ElScrollbar: typeof import('element-plus/es')['ElScrollbar']

你可能感兴趣的:(ElementPlus里的类型别名声明及使用)