@g1cloud/bluesea 5.0.0-beta.14 → 5.0.0-beta.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,6 +2,7 @@ import { RawData } from '../../util/typeUtil';
|
|
|
2
2
|
import { RouteLocation, Router } from 'vue-router';
|
|
3
3
|
import { FavoriteMenuHandler, FrameContext, Menu, MenuCaptionProvider, Page, PageInstance, PageTitleProvider, PageTitleRenderer } from '../FrameModel';
|
|
4
4
|
import { ShortcutKeyHandler } from '../ShortcutKeyHandler.ts';
|
|
5
|
+
import { MultiLangText } from '../../model/CommonTypes.ts';
|
|
5
6
|
|
|
6
7
|
export type DefaultFrameConfig = {
|
|
7
8
|
router: Router;
|
|
@@ -29,7 +30,7 @@ export declare class DefaultFrameContext implements FrameContext {
|
|
|
29
30
|
syncCurrentPath(route: RouteLocation): Promise<void>;
|
|
30
31
|
closeActivePage(): Promise<void>;
|
|
31
32
|
getPageByRoute(route: RouteLocation): PageInstance | undefined;
|
|
32
|
-
setPageTitle(route: RouteLocation, title?:
|
|
33
|
+
setPageTitle(route: RouteLocation, title?: MultiLangText): void;
|
|
33
34
|
setPageSubtitle(route: RouteLocation, subtitle?: string): void;
|
|
34
35
|
/**
|
|
35
36
|
* pagePath 에 해당하는 화면 URL 로 이동한다.
|