Home > @xoram/plugin-panoramique > ComponentHarness
ComponentHarness interface
Describe how a component should be mounted into the Vue app.
Signature:
typescript
export interface ComponentHarness<component extends Component = Component, identifier extends string = string>
1
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
HarnessChildren<component> | The id of the other harnesses to mount as the component's children in its slots | ||
Multiplex<ComponentEvents<component>> | The listeners to bind to the component when mounting it in the application. | ||
identifier | Identifies the harness in the store so it can be used as another one's child. | ||
ComponentPropAndModels<component> | The props to pass to the Vue component when mounting it in the application. | ||
component | The Vue component to use when mounting the harness |