forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQSlider.json
More file actions
31 lines (27 loc) · 708 Bytes
/
QSlider.json
File metadata and controls
31 lines (27 loc) · 708 Bytes
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
{
"mixins": [ "components/slider/slider-utils" ],
"meta": {
"docsUrl": "https://v1.quasar.dev/vue-components/slider"
},
"props": {
"value": {
"type": "Number",
"desc": "Model of the component (must be between min/max); Either use this property (along with a listener for 'input' event) OR use v-model directive",
"examples": [ "v-model=\"positionModel\"" ],
"category": "model"
},
"label-value": {
"type": [ "String", "Number" ],
"desc": "Override default label value",
"examples": [
":label-value=\"model + 'px'\""
],
"category": "content"
}
},
"events": {
"input": {
"extends": "input"
}
}
}