element/packages/alert
2017-01-01 01:11:21 +08:00
..
src general: normalize name in default export 2017-01-01 01:11:21 +08:00
cooking.conf.js Support publish component packages 2016-10-17 12:14:10 +08:00
index.js Components: use es2015 export module, fixed #907 2016-11-08 15:01:00 +08:00
package.json component README update and fix 2016-12-16 10:57:54 +08:00
README.md component README update and fix 2016-12-16 10:57:54 +08:00

element-alert

A element-alert component for Vue.js.

Demo

http://element-component.github.io/el-alert

Installation

npm i element-alert -D

Usage

import Vue from 'vue'
import ElAlert from 'element-alert'
import 'element-theme-default/dist/alert.css'

Vue.use(ElAlert)

or

import Vue from 'vue'
import ElAlert from 'element-alert'

Vue.component('el-alert', ElAlert)

Attributes

参数 说明 类型 可选值 默认值
title 标题,必选参数 string
type 主题 string success/warning/info/error info
description 辅助性文字 string
render-content 内容区域的渲染函数,会覆盖 description function(h)
closable 是否可关闭 boolean true
close-text 关闭按钮自定义文本 string
show-icon 是否显示图标 boolean false

Events

事件名称 说明 回调参数
close 关闭alert时触发的事件

Development

make dev

## test
make test

## build
make build

License

MIT