Checkbox Group

Basic usage

<script setup lang="ts"> import { NmorphCheckboxGroup } from "@nmorph/nmorph-ui-kit"; const options = [ { id: "1", disabled: true, label: "1" }, { id: "2", label: "2" }, { id: "3", label: "3" }, ]; const value = ref(["2"]); </script><template> <div class="checkbox-group-model-value-overview"> <NmorphCheckboxGroup v-model="value" :options="options" direction="row" thickness="thin" /> <NmorphCheckboxGroup v-model="value" :options="options" direction="column" design="plain" thickness="extra-thin" /> </div> </template>

NmorphCheckboxGroup Api

Attributes

Slots

Events

Resolution is not supported

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