forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQTab.json
More file actions
82 lines (70 loc) · 1.81 KB
/
QTab.json
File metadata and controls
82 lines (70 loc) · 1.81 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"meta": {
"docsUrl": "https://v1.quasar.dev/vue-components/tabs"
},
"mixins": [ "mixins/ripple" ],
"behavior": {
"$listeners": true
},
"props": {
"icon": {
"extends": "icon"
},
"label": {
"type": [ "Number", "String" ],
"desc": "A number or string to label the tab",
"examples": [ "Home" ],
"category": "content"
},
"alert": {
"type": [ "Boolean", "String" ],
"desc": "Adds an alert symbol to the tab, notifying the user there are some updates; If its value is not a Boolean, then you can specify a color",
"examples": [
"alert",
"alert=\"purple\""
],
"category": "content"
},
"alert-icon": {
"type": "String",
"desc": "Adds a floating icon to the tab, notifying the user there are some updates; It's displayed only if 'alert' is set; Can use the color specified by 'alert' prop",
"examples": [
"alert-icon=\"alarm_on\""
],
"category": "content",
"addedIn": "v1.9.14"
},
"name": {
"type": [ "Number", "String" ],
"desc": "Panel name",
"default": "A random UID",
"examples": [
"home", ":name=\"1\""
],
"category": "general"
},
"no-caps": {
"type": "Boolean",
"desc": "Turns off capitalizing all letters within the tab (which is the default)",
"category": "content"
},
"content-class": {
"type": "String",
"desc": "Class definitions to be attributed to the content wrapper",
"examples": [ "my-special-class" ],
"category": "style",
"addedIn": "v1.12.0"
},
"tabindex": {
"extends": "tabindex"
},
"disable": {
"extends": "disable"
}
},
"slots": {
"default": {
"desc": "Suggestion: QMenu, QTooltip"
}
}
}