Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/weipxiu/vue-component
组件模块高复用,对于大型项目是完全有必要的,在此封装了一个网站最常用的消息提示弹窗组件,包括预设4种状态模式info、success、 error、 warning,点击关闭执行回调函数,内容可通过slot分发自定义。
https://github.com/weipxiu/vue-component
Last synced: 8 days ago
JSON representation
组件模块高复用,对于大型项目是完全有必要的,在此封装了一个网站最常用的消息提示弹窗组件,包括预设4种状态模式info、success、 error、 warning,点击关闭执行回调函数,内容可通过slot分发自定义。
- Host: GitHub
- URL: https://github.com/weipxiu/vue-component
- Owner: weipxiu
- Created: 2018-05-01T03:10:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-07T12:02:30.000Z (over 5 years ago)
- Last Synced: 2024-10-30T11:12:11.444Z (about 2 months ago)
- Language: Vue
- Homepage:
- Size: 676 KB
- Stars: 22
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vuex-examplate
> 基于Vue-component的alert封装
## Build Setup
``` bash
#alert提醒框有四种状态:
info success error warning#设置的props:
type 提醒框类型 默认为info
title 提示信息 '这里有一个消息要提示'
closeable 是否禁用关闭 默认为true
showicon 是否显示图标 默认为fasle
style 设置提醒框样式 默认为{}#定制模板:
slot为iconTmp 定制icon模板
slot为titleTmp 定制提示信息结构#监控状态变化:
事件名close-click 点击关闭X触发
```