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.
41 lines
839 B
41 lines
839 B
import { VNodeChild } from 'vue';
|
|
import { AntdComponent } from './component';
|
|
|
|
export declare class Result extends AntdComponent {
|
|
$props: {
|
|
/**
|
|
* result title
|
|
* @type string
|
|
*/
|
|
title?: VNodeChild | JSX.Element;
|
|
|
|
/**
|
|
* result sub title
|
|
*
|
|
* @type string
|
|
*/
|
|
subTitle?: VNodeChild | JSX.Element;
|
|
|
|
/**
|
|
* result status,decide icons and colors
|
|
* enum of 'success' | 'error' | 'info' | 'warning'| '404' | '403' | '500'` | 'info'
|
|
*
|
|
* @default 'info'
|
|
* @type string
|
|
*/
|
|
status?: 'success' | 'error' | 'info' | 'warning' | '404' | '403' | '500';
|
|
|
|
/**
|
|
* custom back icon
|
|
* @type any v-slot
|
|
*/
|
|
icon?: VNodeChild | JSX.Element;
|
|
|
|
/**
|
|
* operating area
|
|
* @type any v-slot
|
|
*/
|
|
extra?: VNodeChild | JSX.Element;
|
|
};
|
|
}
|