123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- export default {
- modelValue: {
- type: [Number, Array],
- default: null
- },
- value: {
- type: [Number, Array],
- default: null
- },
- min: {
- type: Number,
- default: 0
- },
- max: {
- type: Number,
- default: 100
- },
- step: {
- type: Number,
- default: 1
- },
- range: {
- type: Boolean,
- defalut: false
- },
- disabled: {
- type: Boolean,
- defalut: false
- },
- vertical: {
- type: Boolean,
- defalut: false
- },
- marks: {
- type: Object
- },
- thumbSize: {
- type: String,
- defalut: null
- },
- thumbColor: {
- type: String,
- defalut: null
- },
- thumbBorderColor: {
- type: String,
- defalut: null
- },
- thumbRadius: {
- type: String,
- defalut: null
- },
- railColor: {
- type: String,
- defalut: null
- },
- railRadius: {
- type: String,
- defalut: null
- },
- railSize: {
- type: String,
- defalut: null
- },
- trackColor: {
- type: String,
- defalut: null
- },
- }
|