UNPKG

@wdns/vuetify-stepper-form

Version:

The Vuetify Stepper Form plugin provides a structured way to create multi-step forms using Vue 3, TypeScript, and Vuetify. It features a stepper layout that allows users to navigate between steps with form validation. The plugin is customizable and stream

20 lines (19 loc) 705 B
import { Field, SharedProps } from '../../../types'; import { VCheckbox } from 'vuetify/components'; import { default as VSFCheckbox } from './VSFCheckbox.vue'; interface InternalField extends Field { color?: VCheckbox['color']; density?: VCheckbox['density']; falseIcon?: VCheckbox['falseIcon']; falseValue?: VCheckbox['falseValue']; hideDetails?: VCheckbox['hideDetails']; hint?: VCheckbox['hint']; messages?: VCheckbox['messages']; multiple?: VCheckbox['multiple']; persistentHint?: VCheckbox['persistentHint']; trueValue?: VCheckbox['trueValue']; } export interface VSFCheckboxProps extends SharedProps { field: InternalField; } export default VSFCheckbox;