Variable MiniviewComponentConst

MiniviewComponent: {
    methods: {
        init: ((surfaceId: string) => void);
    };
    mounted: (() => void);
    name: string;
    props: {
        activeTracking: {
            default: boolean;
            type: BooleanConstructor;
        };
        className: {
            default: string;
            type: StringConstructor;
        };
        clickToCenter: {
            default: boolean;
            type: BooleanConstructor;
        };
        surfaceId: {
            default: string;
            type: StringConstructor;
        };
    };
    render: ((_ctx: any) => VNode<RendererNode, RendererElement, {
        [key: string]: any;
    }>);
} = ...

This component provides a miniview widget. See MiniviewComponentProps for a definition of supported props.

Version :