adverich-kun-ui
Version:
Una librería de componentes Vue.js con Tailwind CSS
74 lines (73 loc) • 1 kB
JavaScript
const e = {
modelValue: {
type: [Number, Array],
default: 0
},
min: {
type: Number,
default: 0
},
max: {
type: Number,
default: 100
},
step: {
type: Number,
default: 1
},
ticks: {
type: Boolean,
default: !1
},
tickLabels: {
type: Boolean,
default: !1
},
tickSize: {
type: Number,
default: 2
},
tickColor: {
type: String,
default: "border-red-400"
},
vertical: {
type: Boolean,
default: !1
},
range: {
type: Boolean,
default: !1
},
label: {
type: String,
default: null
},
thumbLabel: {
type: Boolean,
default: !0
},
disabled: {
type: Boolean,
default: !1
},
trackColor: {
type: String,
default: "bg-blue-500"
},
thumbColor: {
type: String,
default: "bg-blue-500"
},
class: {
type: [String, Array, Object],
default: null
},
style: {
type: Object,
default: null
}
};
export {
e as KunSliderProps
};