메뉴 navigation 정보

interface Navigation {
    active?: boolean;
    activeTab?: boolean;
    component?: any;
    display?: boolean;
    favorite?: boolean;
    icon?: string;
    iconSrc?: string;
    id?: string;
    items?: Navigation[];
    originId?: string;
    parent?: Navigation;
    path?: string;
    prgId?: string;
    show?: boolean;
    text?: string;
    ts?: any;
    visible?: boolean;
}

Properties

active?: boolean

활성화 여부

activeTab?: boolean

tab 활성화 여부

component?: any

컴포넌트 정보

display?: boolean

표시 여부

favorite?: boolean

즐겨 찾기 메뉴 여부

icon?: string

아이콘

iconSrc?: string

아이콘 경로

id?: string

navigation id

items?: Navigation[]

하위 아이템 목록

originId?: string

즐겨찾기의 경우 원본 메뉴 아이디

parent?: Navigation

상위 navigation

path?: string

경로

prgId?: string

프로그램 아이디

show?: boolean

노출 여부

text?: string

명칭

ts?: any

감지를 위한 dummy 값

visible?: boolean

navigation 표시여부

Generated using TypeDoc