interface Props {
    name?: string;
    context: IContext;
    viewParams: IParam;
    localContext?: IParam,
    localViewParams?: IParam,
    closeView?: Function;
    pLoadingHelper?: ILoadingHelper;
    pViewCtx?: IViewCtx;
{{#if props}}
    {{props}}
{{/if}}
}

const props = withDefaults(defineProps<Props>(), {
    {{propsDefault}}
});