d.ts升级到对应的iview 3.4.0版本
This commit is contained in:
parent
4ac6bce418
commit
6e16a96e94
12 changed files with 78 additions and 5 deletions
9
types/table.d.ts
vendored
9
types/table.d.ts
vendored
|
@ -40,6 +40,10 @@ export declare interface Table extends Vue {
|
|||
* 表格高度,单位 px,设置后,如果表格内容大于此值,会固定表头
|
||||
*/
|
||||
height?: number | string;
|
||||
/**
|
||||
* 表格最大高度,单位 px,设置后,如果表格内容大于此值,会固定表头
|
||||
*/
|
||||
'max-height'?: number | string;
|
||||
/**
|
||||
* 表格是否加载中
|
||||
* @default false
|
||||
|
@ -85,6 +89,11 @@ export declare interface Table extends Vue {
|
|||
* @default dark
|
||||
*/
|
||||
"tooltip-theme"?: string;
|
||||
/**
|
||||
* 是否强制使用内置的 row-key,开启后可能会影响性能
|
||||
* @default false
|
||||
*/
|
||||
"row-key"?: boolean;
|
||||
/**
|
||||
* 开启 highlight-row 后有效,当表格的当前行发生变化的时候会触发
|
||||
* currentRow:当前高亮行的数据
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue