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
  | const props = { 
 |      content: { 
 |          type: String, 
 |      }, 
 |      navigatorProps: { 
 |          type: Object, 
 |      }, 
 |      prefixIcon: { 
 |          type: null, 
 |      }, 
 |      size: { 
 |          type: String, 
 |          value: 'medium', 
 |      }, 
 |      status: { 
 |          type: String, 
 |          value: 'normal', 
 |      }, 
 |      disabled: { 
 |          type: Boolean, 
 |          value: false, 
 |      }, 
 |      hover: { 
 |          type: Boolean, 
 |          value: false, 
 |      }, 
 |      suffixIcon: { 
 |          type: null, 
 |      }, 
 |      theme: { 
 |          type: String, 
 |          value: 'default', 
 |      }, 
 |      underline: { 
 |          type: Boolean, 
 |      }, 
 |  }; 
 |  export default props; 
 |  
  |