UNPKG

@squirrel-cloud/ui-vue

Version:

松鼠的坚果屋前端VUE框架

24 lines (23 loc) 376 B
import { Component } from 'vue'; import { ComponentType } from '../../typings'; /** * 警告属性 */ export interface AlertProps { /** * 警告类型 */ type?: ComponentType; /** * 是否显示图标 */ showIcon?: boolean; /** * 警告图标 */ icon?: Component; /** * 警告内容 */ text: string; }