We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
// 导入ElementUIComponent组件类型 import { ElementUIComponent } from './component' // 警告类型 // 主题type export type AlertType = 'success' | 'warning' | 'info' | 'error' // effect选择提供的主题 export type AlertEffect = 'dark' | 'light' /** 警告组件 */ export declare class ElAlert extends ElementUIComponent { /** 标题 */ title: string /** 组件主题 */ type: AlertType /** 描述性文本,也可以通过默认槽 */ description: string /** 是否可关闭 */ closable: boolean /** 是否将文本居中 */ center: boolean /** 自定义关闭按钮文本 */ closeText: string /** 显示类型图标 */ showIcon: boolean /** 选择提供的主题 */ effect: AlertEffect }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: