| 12345678910111213141516 |
- <script lang="ts">
- import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
- let {
- ref = $bindable(null),
- value = $bindable([]),
- ...restProps
- }: DropdownMenuPrimitive.CheckboxGroupProps = $props();
- </script>
- <DropdownMenuPrimitive.CheckboxGroup
- bind:ref
- bind:value
- data-slot="dropdown-menu-checkbox-group"
- {...restProps}
- />
|