• 관리메뉴 유틸리티 사용

    Returns {
        closeTabMenuByIndex: ((index) => void);
        openMenu: ((nav, data?) => Promise<void>);
        openMenuById: ((id, data?) => void);
        openMenuByPath: ((path, data?) => void);
        openedTabNavigations: ComputedRef<{
            active?: boolean;
            activeTab?: boolean;
            component?: any;
            display?: boolean;
            favorite?: boolean;
            icon?: string;
            iconSrc?: string;
            id?: string;
            items?: { id?: string; prgId?: string; text?: string; path?: string; icon?: string; iconSrc?: string; active?: boolean; activeTab?: boolean; display?: boolean; show?: boolean; items?: ...[]; parent?: ...; favorite?: boolean; ts?: any; visible?: boolean; component?: any; originId?: string; }[];
            originId?: string;
            parent?: { id?: string; prgId?: string; text?: string; path?: string; icon?: string; iconSrc?: string; active?: boolean; activeTab?: boolean; display?: boolean; show?: boolean; items?: ...[]; parent?: ...; favorite?: boolean; ts?: any; visible?: boolean; component?: any; originId?: string; };
            path?: string;
            prgId?: string;
            show?: boolean;
            text?: string;
            ts?: any;
            visible?: boolean;
        }[]>;
    }

    • closeTabMenuByIndex: ((index) => void)
        • (index): void
        • index로 tab 메뉴를 close 한다.

          Parameters

          • index: number

            메뉴 순번 (from zero.)

          Returns void

    • openMenu: ((nav, data?) => Promise<void>)
        • (nav, data?): Promise<void>
        • navigation 정보로 메뉴 오픈

          Parameters

          • nav: Navigation

            Navigation

          • Optional data: any

            tab 메뉴 사용 시에 전달할 데이터

          Returns Promise<void>

    • openMenuById: ((id, data?) => void)
        • (id, data?): void
        • 메뉴 또는 프로그램 아이디로 오픈

          Parameters

          • id: string

            아이디

          • Optional data: any

          Returns void

    • openMenuByPath: ((path, data?) => void)
        • (path, data?): void
        • 메뉴를 경로 기준으로 오픈한다.

          Parameters

          • path: string

            경로

          • Optional data: any

          Returns void

    • openedTabNavigations: ComputedRef<{
          active?: boolean;
          activeTab?: boolean;
          component?: any;
          display?: boolean;
          favorite?: boolean;
          icon?: string;
          iconSrc?: string;
          id?: string;
          items?: { id?: string; prgId?: string; text?: string; path?: string; icon?: string; iconSrc?: string; active?: boolean; activeTab?: boolean; display?: boolean; show?: boolean; items?: ...[]; parent?: ...; favorite?: boolean; ts?: any; visible?: boolean; component?: any; originId?: string; }[];
          originId?: string;
          parent?: { id?: string; prgId?: string; text?: string; path?: string; icon?: string; iconSrc?: string; active?: boolean; activeTab?: boolean; display?: boolean; show?: boolean; items?: ...[]; parent?: ...; favorite?: boolean; ts?: any; visible?: boolean; component?: any; originId?: string; };
          path?: string;
          prgId?: string;
          show?: boolean;
          text?: string;
          ts?: any;
          visible?: boolean;
      }[]>

Generated using TypeDoc