Skip to content

Commit 62a7087

Browse files
committed
demo ok
1 parent 1b66b1e commit 62a7087

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-virtual-tree",
3-
"version": "3.1.4",
3+
"version": "4.0.0",
44
"description": "Tree component for large amount of data, base on Vue3",
55
"scripts": {
66
"serve": "vue-cli-service serve --port 4200",

src/doc/tableData.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -87,28 +87,28 @@ const propData = [
8787
description: '默认展开的nodeKey数组',
8888
type: 'Array<string | number>',
8989
defaultValue: '[]',
90-
version: '2.0.0'
90+
version: '4.0.0'
9191
},
9292
{
9393
argument: 'defaultDisabledKeys',
9494
description: '默认禁用的nodeKey数组',
9595
type: 'Array<string | number>',
9696
defaultValue: '[]',
97-
version: '2.0.0'
97+
version: '4.0.0'
9898
},
9999
{
100100
argument: 'defaultCheckedKeys',
101101
description: '默认勾选的nodeKey数组',
102102
type: 'Array<string | number>',
103103
defaultValue: '[]',
104-
version: '2.0.0'
104+
version: '4.0.0'
105105
},
106106
{
107107
argument: 'defaultSelectedKey',
108108
description: '默认选中的nodeKey',
109109
type: 'string | number',
110110
defaultValue: '',
111-
version: '2.0.0'
111+
version: '4.0.0'
112112
},
113113
];
114114
const eventData = [
@@ -148,7 +148,7 @@ const methodData = [
148148
name: 'getExpandedKeys',
149149
description: '获取已展开的nodeKeys',
150150
type: '() => Array<string | number>',
151-
version: '2.0.0'
151+
version: '4.0.0'
152152
}
153153
];
154154
const nodeOptionData = [
@@ -183,28 +183,28 @@ const nodeOptionData = [
183183
description: '是否禁用',
184184
type: 'boolean',
185185
defaultValue: 'false',
186-
version: '2.0.0已废弃'
186+
version: '4.0.0已废弃'
187187
},
188188
{
189189
argument: 'expanded',
190190
description: '是否展开',
191191
type: 'boolean',
192192
defaultValue: 'false',
193-
version: '2.0.0已废弃'
193+
version: '4.0.0已废弃'
194194
},
195195
{
196196
argument: 'selected',
197197
description: '是否选中',
198198
type: 'boolean',
199199
defaultValue: 'false',
200-
version: '2.0.0已废弃'
200+
version: '4.0.0已废弃'
201201
},
202202
{
203203
argument: 'checked',
204204
description: '是否勾选',
205205
type: 'boolean',
206206
defaultValue: 'false',
207-
version: '2.0.0已废弃'
207+
version: '4.0.0已废弃'
208208
},
209209
{
210210
argument: 'children',

0 commit comments

Comments
 (0)