1
0
mirror of synced 2025-01-31 23:01:39 +03:00

Adds the ability to disable individual input boxes

This commit is contained in:
Justin Schroeder 2019-09-23 16:47:02 -04:00
parent d3def49523
commit 339ff51666
2 changed files with 3 additions and 3 deletions

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

View File

@ -95,7 +95,7 @@
v-if="type === 'radio'" v-if="type === 'radio'"
@blur="setBlurState" @blur="setBlurState"
@focus="setFocusState" @focus="setFocusState"
:disabled="disabled" :disabled="disabled || option.disabled"
> >
<input <input
type="checkbox" type="checkbox"
@ -109,7 +109,7 @@
v-if="type === 'checkbox'" v-if="type === 'checkbox'"
@blur="setBlurState" @blur="setBlurState"
@focus="setFocusState" @focus="setFocusState"
:disabled="disabled" :disabled="disabled || option.disabled"
> >
<label <label
:for="option.id" :for="option.id"