Vuido
  • About Vuido
  • Introduction
  • Installation
    • Manual Configuration
    • Production Builds
  • Usage
    • Window Template
    • Script Section
    • Interpolations
    • Computed Properties
    • Conditionals and Loops
    • Handling User Input
    • Managing Windows
    • Displaying Dialogs
    • Custom Components
    • Using libui Classes
    • Common Attributes
  • Packaging
  • Built-in Components
    • Window
    • Containers
      • Box
      • Form
      • Group
      • Tab
    • Widgets
      • Area
        • AreaGroup
        • AreaPath
        • AreaText
      • Button
      • Checkbox
      • ColorButton
      • Combobox
      • DatePicker
      • DateTimePicker
      • DropdownList
      • FontButton
      • ProgressBar
      • RadioButtons
      • Separator
      • Slider
      • Spinbox
      • Text
      • TextArea
      • TextInput
      • TimePicker
Powered by GitBook
On this page
  • Attributes
  • min
  • max
  • value
  • Events
  • change
  • Example
  1. Built-in Components
  2. Widgets

Slider

A horizontal slider for editing numeric values.

Slider supports the v-model directive.

Attributes

min

type: Number

The minimum value of the slider.

max

type: Number

The maximum value of the slider.

value

type: Number

The current value of the slider.

Events

change

Emitted when the current value is changed. The current value is passed as an argument.

Example

<Slider min="0" max="100" v-model="slider"/>
PreviousSeparatorNextSpinbox

Last updated 6 years ago