Blame view

types/menu.d.ts 2.42 KB
1011bd41   yangdan8   1.update all d.ts...
1
  // Type definitions for iview 3.3.1
454cdd17   yangd   完成新版本3.0.0的iview全...
2
3
4
  // Project: https://github.com/iview/iview
  // Definitions by: yangdan
  // Definitions: https://github.com/yangdan8/iview.git
4a2af4f5   yangd   1.将class定义方式修改为in...
5
  import Vue, { VNode } from 'vue';
454cdd17   yangd   完成新版本3.0.0的iview全...
6
  
539e96c5   yangd   修复使用ts模式时不能按需引入组件的问题
7
  export declare class Menu extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
    /**
     * 菜单类型,可选值为 horizontal(水平) 和 vertical(垂直)
     * @default vertical
     */
    mode?: 'horizontal' | 'vertical';
    /**
     * 主题,可选值为 light、dark、primary,其中 primary 只适用于 mode="horizontal"
     * @default light
     */
    theme?: 'light' | 'dark' | 'primary';
    /**
     * 激活菜单的 name 值
     */
    'active-name'?: string | number;
    /**
     * 展开的 Submenu 的 name 集合
     */
    'open-names'?: string[] | number[];
    /**
     * 是否开启手风琴模式,开启后每次至多展开一个子菜单
     * @default false
     */
    accordion?: boolean;
    /**
     * 导航菜单的宽度,只在 mode="vertical" 时有效,如果使用 Col 等布局,建议设置为 auto
     * @default 240px
     */
    width?: string;
    /**
     * 选择菜单(MenuItem)时触发
     */
    $emit(eventName: 'on-select', name?: string | number): this;
    /**
     * 当 展开/收起 子菜单时触发	
     * @default 当前展开的 Submenu 的 name 值数组
     */
    $emit(eventName: 'on-open-change', names: string[] | number[]): this;
    /**
     * 手动更新展开的子目录,注意要在 $nextTick 里调用
     */
    updateOpened(): void;
    /**
     * 手动更新当前选择项,注意要在 $nextTick 里调用
     */
    updateActiveName(): void;
  }
  
539e96c5   yangd   修复使用ts模式时不能按需引入组件的问题
55
  export declare class MenuItem extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
    /**
     * 菜单项的唯一标识,必填
     */
    name?: string | number;
    /**
     * 跳转的链接,支持 vue-router 对象
     */
    to?: string | object;
    /**
     * 路由跳转时,开启 replace 将不会向 history 添加新记录
     * @default false
     */
    replace?: boolean;
    /**
     * 相当于 a 链接的 target 属性
     * @default _self
     */
    target?: '_blank' | '_self' | '_parent' | '_top';
6e16a96e   yangd   d.ts升级到对应的iview 3...
74
75
76
77
78
    /**
     * 同 vue-router append
     * @default false
     */
    append?: boolean;
454cdd17   yangd   完成新版本3.0.0的iview全...
79
80
  }
  
539e96c5   yangd   修复使用ts模式时不能按需引入组件的问题
81
  export declare class MenuSub extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
    /**
     * 子菜单的唯一标识,必填
     */
    name?: string | number;
    /**
     * slot插槽对象
     */
    $slots: {
      /**
       * 菜单项
       */
      '': VNode[];
      /**
       * 子菜单标题
       */
      title: VNode[];
    };
  }
  
539e96c5   yangd   修复使用ts模式时不能按需引入组件的问题
101
  export declare class MenuGroup extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
102
103
104
105
106
107
    /**
     * 分组标题
     * @default 空
     */
    title?: string;
  }