interface Props {
    name?: string,
    noViewCaption?: boolean,
    openType?: 'ROUTE' | 'EMBED' | 'MODAL',
    context?: IContext,
    viewParams?: IParam,
    pLoadingHelper?: ILoadingHelper,
    isLoadDefault?: boolean,
{{#if props}}
    {{props}}
{{/if}}
}

const props = withDefaults(defineProps<Props>(), {
{{#if propsDefaultReplace}}
{{else}}
    noViewCaption: false,
    openType: 'ROUTE',
    isLoadDefault: true,
{{/if}}
{{#if propsDefault}}
    {{propsDefault}}
{{/if}}
});