Events @change on radio button of Formkit Not working #1372
yogendrarr
started this conversation in
General
Replies: 1 comment 2 replies
-
FormKit is not a UI library, so you don't need it for almost any case at all to have So it depends on what you're doing, as to why it doesn't have, its because we use |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
<FormKit
v-if="question.inputType === 'radio'"
v-model="question.response"
type="radio"
:label="question.questionName"
:options="question.optionsArray"
:name="question.questionCode"
validation="required"
:classes="{
outer: 'fk-inline',
}"
@click="handleParentQuestionChange(index, question.response)"
/>
Beta Was this translation helpful? Give feedback.
All reactions