dreipol/vue-ui

View on GitHub
src/components/form/optgroup/optgroup.vue

Summary

Maintainability
Test Coverage
<template>
  <optgroup :label="label">
    <slot />
  </optgroup>
</template>

<script>
  export default {
    props: {
      label: {
        type: String,
        required: true,
      },
    },
  }
</script>