0.1.9 • Published 5 years ago
vue-simple-tips v0.1.9
vue-simple-tips
vue简化版提示组件
Usage
1:安装
npm install vue-simple-tips --save
or
yarn add vue-simple-tips
2:引入
在main.js中
// 导入组件
import Tips from 'vue-simple-tips'
import 'vue-simple-tips/lib/tips.css'
// 注册组件库
Vue.use(Tips);
3:使用
<Tips />
// 提示框消失
methods: {
funs(){
this.showFlag = true;
setTimeout(() => {
this.showFlag = false;
},2000)
}
}
API
<Tips
:showFlag="showFlag"
:location="location"
:distance="distance"
:tipsMsg="tipsMsg" />
showFlag
是否显示 true/false(默认) Boolean
location
提示框位置 top/center/bottom(默认) String
distance
提示显示位置,只有 location 为 top/bottom(默认50px) 生效 String
tipsMsg
提示内容 提示(默认) String
times(已废除)
消失时间 2000(默认,毫秒) Number
更新记录
===== 2019-07-26 ======
1:修复提示不居中问题
2:缩小提示框上下间距
3:降低提示框透明度为0.5
4:缩小提示框文字为13px
===== 2019-07-17 ======
1:紧急废除times配置项,时间配置留给用户自己配置
2:新增提示框消失动画