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
34
types/timeline.d.ts
vendored
Normal file
34
types/timeline.d.ts
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
// 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, { VNode } from 'vue';
|
||||
|
||||
export declare class Timeline extends Vue {
|
||||
/**
|
||||
* 指定是否最后一个节点为幽灵节点
|
||||
* @default false
|
||||
*/
|
||||
pending?: boolean;
|
||||
}
|
||||
|
||||
export declare class TimelineItem extends Vue {
|
||||
/**
|
||||
* 圆圈颜色,可选值为blue、red、green,或自定义色值
|
||||
* @default blue
|
||||
*/
|
||||
color?: 'blue' | 'red' | 'green' | string;
|
||||
/**
|
||||
* slot插槽对象
|
||||
*/
|
||||
$slots: {
|
||||
/**
|
||||
* 基本内容
|
||||
*/
|
||||
'': VNode[];
|
||||
/**
|
||||
* 自定义时间轴点内容
|
||||
*/
|
||||
dot: VNode[];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue