Skip to content

ts-element系列之alert警告 #1

Open
@webVueBlog

Description

// 导入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
}

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions