UNPKG

epic-designer-dev

Version:

基于vue3的设计器,可视化开发页面表单。在epic-designer的基础上新增了字典选择器

14 lines (13 loc) 680 B
import { ActivitybarModel, RightSidebarModel, ViewsContainersModel } from '../../../types/src/index'; export type Attr = 'id' | 'title'; export declare function usePanel(): { getActivitybars: import('vue').ComputedRef<ActivitybarModel[]>; getRightSidebars: import('vue').ComputedRef<RightSidebarModel[]>; hideActivitybar: (title: string) => void; hideRightSidebar: (value: string) => void; registerActivitybar: (activitybar: ActivitybarModel) => void; registerRightSidebar: (rightSidebar: RightSidebarModel) => void; showActivitybar: (title: string) => void; showRightSidebar: (title: string) => void; viewsContainers: ViewsContainersModel; };