Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/components/FwbInput/FwbInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ interface InputProps {
inputClass?: string | Record<string, boolean>
label?: string
labelClass?: string | Record<string, boolean>
modelValue?: string | number
required?: boolean
size?: InputSize
type?: InputType
Expand All @@ -76,15 +75,14 @@ const props = withDefaults(defineProps<InputProps>(), {
inputClass: '',
label: '',
labelClass: '',
modelValue: '',
required: false,
size: 'md',
type: 'text',
validationStatus: undefined,
wrapperClass: '',
})

const model = defineModel({ type: String })
const model = defineModel<string | number>({ default: '' })

const {
wrapperClass,
Expand Down
Loading