vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
583 B
37 lines
583 B
import { AntdComponent } from './component'; |
|
|
|
export declare class Result extends AntdComponent { |
|
/** |
|
* result title |
|
* @type string |
|
*/ |
|
title: any; |
|
|
|
/** |
|
* result sub title |
|
* |
|
* @type string |
|
*/ |
|
subTitle: any; |
|
|
|
/** |
|
* result status,decide icons and colors |
|
* enum of 'success' | 'error' | 'info' | 'warning'| '404' | '403' | '500'` | 'info' |
|
* |
|
* @default 'info' |
|
* @type string |
|
*/ |
|
status: string; |
|
|
|
/** |
|
* custom back icon |
|
* @type any v-slot |
|
*/ |
|
icon: any; |
|
|
|
/** |
|
* operating area |
|
* @type any v-slot |
|
*/ |
|
extra: any; |
|
}
|
|
|