UNPKG
rayyy-vue-table-components
Version:
latest (2.0.34)
2.0.34
2.0.33
2.0.32
2.0.31
2.0.30
2.0.28
2.0.27
2.0.26
2.0.25
2.0.23
2.0.22
2.0.21
2.0.20
2.0.19
2.0.18
2.0.17
2.0.16
2.0.15
2.0.14
2.0.13
2.0.12
2.0.11
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.4.5
1.4.4
1.4.3
1.4.1
1.4.0
1.3.32
1.3.31
1.3.30
1.3.29
1.3.28
1.3.27
1.3.26
1.3.25
1.3.24
1.3.23
1.3.22
1.3.21
1.3.20
1.3.19
1.3.18
1.3.17
1.3.16
1.3.15
1.3.14
1.3.13
1.3.12
1.3.11
1.3.10
1.3.9
1.3.8
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.39
1.2.38
1.2.37
1.2.36
1.2.35
1.2.34
1.2.33
1.2.32
1.2.31
1.2.30
1.2.29
1.2.28
1.2.27
1.2.26
1.2.25
1.2.24
1.2.23
1.2.22
1.2.21
1.2.20
1.2.19
1.2.18
1.2.17
1.2.16
1.2.15
1.2.14
1.2.13
1.2.12
1.2.11
1.2.10
1.2.9
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.0.40
1.0.39
1.0.38
1.0.37
1.0.35
1.0.34
1.0.33
1.0.32
1.0.31
1.0.30
1.0.29
1.0.28
1.0.27
1.0.26
1.0.25
1.0.24
1.0.23
1.0.22
1.0.21
1.0.20
1.0.19
1.0.18
1.0.17
1.0.16
1.0.15
1.0.12
1.0.11
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Vue 3 + Element Plus 表格組件庫
rayyy-vue-table-components
/
src
/
utils
/
tableHelper.ts
9 lines
(7 loc)
•
196 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
TableColumn
}
from
'src/types'
export
function
setActiveColumn<T>(
tableColumns
:
TableColumn
<T>[]) {
return
tableColumns.
map
(
(
col
) =>
({ ...col,
checkActive
:
true
, })) }