# Toggle
Toggle is used for switching between two states. Use a toggle instead of a checkbox or radio button when you're enabling or disabling some feature or functionality.
# Data Binding
Use v-model
to bind the toggle to some data.
# Label
Use label
to label your toggle. You can also use a slot.
# Disabled Toggles
Adding the disabled
prop will disable the toggle and give it a disabled appearance.