update
This commit is contained in:
parent
ba9d70c770
commit
a3a90be7d5
68 changed files with 6446 additions and 1510 deletions
32
dist/types/back-top.d.ts
vendored
Normal file
32
dist/types/back-top.d.ts
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
// Type definitions for iview 3.0.1
|
||||
// Project: https://github.com/iview/iview
|
||||
// Definitions by: yangdan
|
||||
// Definitions: https://github.com/yangdan8/iview.git
|
||||
import Vue from 'vue';
|
||||
|
||||
export declare class BackTop extends Vue {
|
||||
/**
|
||||
* 页面滚动高度达到该值时才显示BackTop组件
|
||||
* @default 400
|
||||
*/
|
||||
height?: number;
|
||||
/**
|
||||
* 组件距离底部的距离
|
||||
* @default 30
|
||||
*/
|
||||
bottom?: number;
|
||||
/**
|
||||
* 组件距离右部的距离
|
||||
* @default 30
|
||||
*/
|
||||
right?: number;
|
||||
/**
|
||||
* 滚动动画持续时间,单位 毫秒
|
||||
* @default 1000
|
||||
*/
|
||||
duration?: number;
|
||||
/**
|
||||
* 点击按钮时触发
|
||||
*/
|
||||
$emit(eventName: 'on-click'): this;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue