update the master branch to the latest
This commit is contained in:
parent
67d534df27
commit
23a0ba9831
611 changed files with 122648 additions and 0 deletions
48
types/steps.d.ts
vendored
Normal file
48
types/steps.d.ts
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
// Type definitions for iview 3.3.1
|
||||
// Project: https://github.com/iview/iview
|
||||
// Definitions by: yangdan
|
||||
// Definitions: https://github.com/yangdan8/iview.git
|
||||
import Vue from 'vue';
|
||||
|
||||
export declare class Steps extends Vue {
|
||||
/**
|
||||
* 当前步骤,从 0 开始计数
|
||||
* @default 0
|
||||
*/
|
||||
current?: number;
|
||||
/**
|
||||
* 当前步骤的状态,可选值为wait、process、finish、error
|
||||
* @default process
|
||||
*/
|
||||
status?: 'wait' | 'process' | 'finish' | 'error';
|
||||
/**
|
||||
* 步骤条的尺寸,可选值为small或者不写
|
||||
*/
|
||||
size?: '' | 'small';
|
||||
/**
|
||||
* 步骤条的方向,可选值为horizontal(水平)或vertical(垂直)
|
||||
* @default horizontal
|
||||
*/
|
||||
direction?: 'horizontal' | 'vertical';
|
||||
}
|
||||
|
||||
export declare class StepsStep extends Vue {
|
||||
/**
|
||||
* 步骤的状态,可选值为wait、process、finish、error,不设置时自动判断
|
||||
* @default process
|
||||
*/
|
||||
status?: 'wait' | 'process' | 'finish' | 'error';
|
||||
/**
|
||||
* 标题
|
||||
* @default 空
|
||||
*/
|
||||
title?: string;
|
||||
/**
|
||||
* 步骤的详细描述,可选
|
||||
*/
|
||||
content?: string;
|
||||
/**
|
||||
* 步骤的图标,可选
|
||||
*/
|
||||
icon?: string;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue