Skip to content

Commit

Permalink
Fix pt pass thru
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Jan 17, 2025
1 parent 63e0efe commit ed3b0ca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defineProps<{
value?: ControlledListItem[];
multiValue?: boolean;
options?: ControlledListItem[];
pt?: object;
ptAriaLabeledBy?: string;
}>();
const emit = defineEmits(["update"]);
const onUpdate = (val: ControlledListItem[]) => {
Expand All @@ -30,7 +30,7 @@ const onUpdate = (val: ControlledListItem[]) => {
:value="value"
:options="options"
:multi-value="multiValue"
:pt="pt"
:pt-aria-labeled-by="ptAriaLabeledBy"
@update="onUpdate"
/>
</div>
Expand Down

0 comments on commit ed3b0ca

Please sign in to comment.