Home > @xoram/plugin-panoramique > ComponentDefinitionHelpers > bind
ComponentDefinitionHelpers.bind property
Provide a value to one of the component's prop. The value can be a direct value, a reactive one or a getter (see ).
Any value set on a non-prop will be bound on the component's root unless it is a fragment, see [Vue's guide on Fallthrough Attributes](https://vuejs.org/guide/components/attrs.html\#fallthrough-attributes).
Signature:
typescript
bind: <prop extends keyof ComponentProps<component>>(this: void, prop: prop, value: MaybeRefOrGetter<NonNullable<ComponentProps<component>[prop]>>, ...modifiers: string[]) => void;
1