1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
| export const events = [
| {
| title: "事件名",
| key: "name",
| width: 150,
| },
| {
| title: "说明",
| key: "type",
| width: 300,
| },
| {
| title: "返回值",
| key: "value",
| },
| ]
| export const props = [
| {
| title: "属性",
| key: "name",
| width: 135,
| },
| {
| title: "说明",
| key: "desc",
| },
| {
| title: "类型",
| key: "type",
| width: 130,
| },
| {
| title: "默认值",
| key: "value",
| },
| ]
| export const methods = [
| {
| title: "方法名",
| key: "name",
| width: 150,
| },
| {
| title: "说明",
| key: "type",
| width: 300,
| },
| {
| title: "参数",
| key: "value",
| },
| ]
|
|