这篇文章主要为大家详细介绍了分析基于Vue2.0实现的移动端弹窗(Alert, Confirm, Toast)组件,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
wc-messagebox
刚开始的时候想要用现成的弹窗组件来着, 但是查找一圈没有发现比较合适项目的, 所以才自己开发了一个, 包含 Alert, Comfirm, Toast, Prompt 四种, 并且可以单个引入.
Vue 的组件开发实际上比较简单, 有兴趣的可以看下源码实现, 步骤很清晰.
关于样式的问题, 是直接从 MUI(魅族开发的) 中拿过来的, 仿照 iOS 的效果.
效果图
【图片暂缺】
图是动图... 动不了点一下就好.
代码如下:
npm i wc-messagebox --save
Quick Start
代码如下:
import {Alert, Confirm, Toast} from 'wc-messagebox'
import 'wc-messagebox/style.css'
Vue.use(Alert, options)
Vue.use(Confirm, options)
Vue.use(Toast, options)
代码如下:
this.$alert(text, options)
options = {
title: '', // 默认无标题
btn: {
text: '',
style: {
'backgroun-color': 'red',
'font-size': '20px',
'color': 'blue'
}
}
}
this.$confirm(text, options)
options = {
title: '', // 默认无标题
yes: {
text: '确定',
style: {}
},
no: {
text: '取消',
style: {}
}
}
this.$toast(text, options);
options = {
position: 'bottom' // 'bottom' | 'center',
duration: '1500'
}
Alert, Confirm 返回的是一个Promise, 以支持链式调用.
代码如下:
this.$confirm(text).then(success).catch(fail)
项目地址
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持四海网。
本文来自:http://www.q1010.com/184/5948-0.html
注:关于分析基于Vue2.0实现的移动端弹窗(Alert, Confirm, Toast)组件的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:vue.js
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。