StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/vue-slider-component/src/pages/Basics/Simple.md

60 lines
1.3 KiB

# Common usage
### Single slider
<example :value="example1"></example>
### Multiple sliders
<example :value="example2"></example>
### Set the range of values
<example :value="example3"></example>
### Set the slider direction
<example :value="example4"></example>
::: tip
- `ltr` stands for `left to right`, the horizontal slider from left to right. `rtl/btt/ttb` is the same
- When the value of `direction` is `btt` or `ttb`, you need to set the component height
:::
### Lazy
The value will only be updated when the drag is over
<example :value="example5"></example>
### Disabled slider
You can disable the entire component with `disabled` or disable the slider separately with `dot-options`
<example :value="example6"></example>
::: warning
When disabling a single slider, use `order = false` or `enableCross = true`.
:::
### Adsorb
When `adsorb` is set to `true`, the slider automatically adsorb to the nearest value.
<example :value="example7"></example>
### Contained
By default, the center of the `dot` is used to align the edge.
When `contained` is set to `true`, the edge of the `dot` is used to align.
<example :value="example8"></example>
### DragOnClick
When `drag-on-click` is set to `true`, can drag the slider directly when pressing the process.
<example :value="example9"></example>
::: example simple :::