♻️(component): 初步完成 select 组件重构

This commit is contained in:
就眠儀式
2022-09-23 12:41:44 +08:00
parent ff335e56df
commit f52ff6207b
10 changed files with 80 additions and 536 deletions

View File

@@ -0,0 +1,3 @@
export const check = (arr: any[], value: any) => {
return arr.indexOf(value) > -1;
}

View File

@@ -1,2 +1,3 @@
export * from "./domUtil";
export * from "./DomUtil";
export * from "./withInstall";
export * from "./arrayUtil";