| v-model | the value of slider, when range is false, use number, otherwise, use [number, number] | number , number[] | 0 | - |
| disabled | whether to disable slider | Boolean | false | - |
| min | the minimum value the slider can slide from | number | 0 | - |
| max | the maximum value the slider can slide to | number | 100 | - |
| step | the granularity the slider can step through | number | 1 | - |
| range | dual thumb mode | Boolean | false | - |
| hasTip | is show tip | Boolean | true | |
| tip-Placement | tip position | String | 'top' | |
| format | slider will pass its value to format, and display its value in tooltip | Function | (val) => {return val} | - |