MediaSFU Vue
    Preparing search index...

    Interface CustomComponentOverride<Props>

    Custom component override interface Allows replacing or wrapping any Vue component with custom implementation

    interface CustomComponentOverride<Props = Record<string, unknown>> {
        component?: Component<Props>;
        render?: (props: Props, defaultRender?: () => VNode) => VNode;
    }

    Type Parameters

    • Props = Record<string, unknown>

      The props interface of the component being overridden

    Index

    Properties

    Properties

    component?: Component<Props>

    Full replacement component - receives original props

    render?: (props: Props, defaultRender?: () => VNode) => VNode

    Render function for more granular control Can wrap or modify the default component