Commit 12c24293ae7759d92a97d2692407101a808f03d9
1 parent
2a21b455
修复几个组件的d.ts定义内容
Showing
4 changed files
with
5 additions
and
5 deletions
Show diff stats
types/loading-bar.d.ts
@@ -6,7 +6,7 @@ import Vue from 'vue'; | @@ -6,7 +6,7 @@ import Vue from 'vue'; | ||
6 | 6 | ||
7 | export const LoadingBar: LoadingBarClass; | 7 | export const LoadingBar: LoadingBarClass; |
8 | 8 | ||
9 | -export declare class LoadingBarClass { | 9 | +export declare class LoadingBarClass extends Vue { |
10 | /** | 10 | /** |
11 | * 开始从 0 显示进度条,并自动加载进度 | 11 | * 开始从 0 显示进度条,并自动加载进度 |
12 | */ | 12 | */ |
types/message.d.ts
@@ -4,7 +4,7 @@ | @@ -4,7 +4,7 @@ | ||
4 | // Definitions: https://github.com/yangdan8/iview.git | 4 | // Definitions: https://github.com/yangdan8/iview.git |
5 | import Vue, { VNode, CreateElement } from "vue"; | 5 | import Vue, { VNode, CreateElement } from "vue"; |
6 | 6 | ||
7 | -export declare class Message { | 7 | +export declare class Message extends Vue { |
8 | /** | 8 | /** |
9 | * 消息 | 9 | * 消息 |
10 | * @param config MessageConfig为相关配置,string为待显示的内容 | 10 | * @param config MessageConfig为相关配置,string为待显示的内容 |
types/modal.d.ts
@@ -4,7 +4,7 @@ | @@ -4,7 +4,7 @@ | ||
4 | // Definitions: https://github.com/yangdan8/iview.git | 4 | // Definitions: https://github.com/yangdan8/iview.git |
5 | import Vue, { VNode, CreateElement } from "vue"; | 5 | import Vue, { VNode, CreateElement } from "vue"; |
6 | 6 | ||
7 | -export declare class Modal { | 7 | +export declare class Modal extends Vue { |
8 | /** | 8 | /** |
9 | * 对话框是否显示,可使用 v-model 双向绑定数据。 | 9 | * 对话框是否显示,可使用 v-model 双向绑定数据。 |
10 | * @default false | 10 | * @default false |
@@ -128,7 +128,7 @@ export declare class Modal { | @@ -128,7 +128,7 @@ export declare class Modal { | ||
128 | }; | 128 | }; |
129 | } | 129 | } |
130 | 130 | ||
131 | -export declare class ModalInstance { | 131 | +export declare class ModalInstance extends Modal { |
132 | /** | 132 | /** |
133 | * 消息 | 133 | * 消息 |
134 | * @param config ModalConfig为相关配置,string为待显示的内容 | 134 | * @param config ModalConfig为相关配置,string为待显示的内容 |
types/notice.d.ts
@@ -4,7 +4,7 @@ | @@ -4,7 +4,7 @@ | ||
4 | // Definitions: https://github.com/yangdan8/iview.git | 4 | // Definitions: https://github.com/yangdan8/iview.git |
5 | import Vue, { VNode, CreateElement } from "vue"; | 5 | import Vue, { VNode, CreateElement } from "vue"; |
6 | 6 | ||
7 | -export declare class Notice { | 7 | +export declare class Notice extends Vue { |
8 | /** | 8 | /** |
9 | * 打开 | 9 | * 打开 |
10 | * @param config NoticeConfig为相关配置,string为待显示的内容 | 10 | * @param config NoticeConfig为相关配置,string为待显示的内容 |