Skip to content

aeria-select

This component renders a group of checkboxes (or radio inputs) depending on the property type.

Example

Selected
vue
<script setup lang="ts">
const selected = ref('')
</script>

<template>
  <aeria-select
    v-model="selected"
    :multiple="1"
    :property="{
      enum: [
        'a',
        'b',
        'c',
      ]
    }"
  ></aeria-select>

  <pre>Selected: {{ selected }}</pre>
</template>

Released under the MIT License.