MonthPicker
Datepicker for selecting month and year format.
API Reference
Show types
typescript
export interface MonthPickerProps {
/** Placeholder text shown when no value is selected */
placeholder?: string;
/** Disables the month picker */
disabled?: boolean;
}| Prop | Default | Type |
|---|---|---|
placeholder | "Select month" | string Placeholder text shown when no value is selected |
disabled | — | boolean Disables the month picker |
modelValue | "" | String |
| Event | Payload |
|---|---|
update:modelValue | [value: String] Fired when the model value changes. |