UNPKG
@tuoyuan/web-plus
Version:
latest (1.8.8)
1.8.8
1.8.7-beat.4
1.8.7-beat.3
1.8.7-beat.2
1.8.7-beat.1
1.8.6
1.8.5-beat.2
1.8.5-beat.1
1.8.4
1.8.4-beta.1
1.8.3
1.8.2
1.8.1
1.8.0
1.7.10
1.7.9
1.7.8
1.7.7
1.7.5
1.7.4
1.7.3
1.7.2
1.7.2-dev
1.7.2-beat.0
1.7.1
1.7.0
1.6.27
1.6.26
1.6.25
1.6.24
1.6.23
1.6.22
1.6.22-dev
1.6.21
1.6.20
1.6.19
1.6.18
1.6.17
1.6.16
1.6.15
1.6.14
1.6.13
1.6.12
1.6.11
1.6.11-dev
1.6.10
1.6.9
1.6.8
1.6.7
1.6.6
1.6.5
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.7
1.2.6
1.2.5
1.2.3
1.2.2
1.2.1
1.2.0
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.15
1.0.14
1.0.13
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.1
1.0.0
0.0.6
0.0.4
0.0.3
0.0.2
0.0.1
基于arco-design-vue的配置化表格表单组件
@tuoyuan/web-plus
/
ui
/
types
/
utils
/
dic.d.ts
12 lines
(11 loc)
•
316 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Option
}
from
"../form/type"
;
export
declare
function
setDicAll
(
option
:
Option
):
void
;
/** * 递归移除对象数组中空的 children 字段 */
interface
TreeNode
{ [
key
:
string
]:
any
;
children
?:
TreeNode
[]; }
export
declare
function
removeEmptyChildren
(
arr
:
TreeNode
[]
):
TreeNode
[];
export
{};