Radio Group

Basic usage

<script setup lang="ts"> import { NmorphRadioGroup } from "@nmorph/nmorph-ui-kit"; const options = [ { value: "one", label: "One" }, { value: "two", label: "Two", disabled: true }, { value: "three", label: "Three" }, ]; const value = ref("three"); </script><template> <div class="radio-group-model-value-overview"> <div class="radio-group-el"> <NmorphRadioGroup :options="options" v-model="value" thickness="thin" /> </div> <div class="radio-group-el"> <NmorphRadioGroup :options="options" v-model="value" direction="column" design="plain" thickness="extra-thin" /> </div> </div> </template>

NmorphRadioGroup Api

Attributes

Slots

Events

Resolution is not supported

Open the documentation on a device with a screen size of at least 375px by 640px.