• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

vue弹出框组件封装实例代码

vue 搞代码 4年前 (2022-01-08) 31次浏览 已收录 0个评论

这篇文章主要介绍了vue弹出框组件封装,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下

新学vue,参考别人封装弹出层组件。好用!

1.你需要先建一个弹出框的模板:

 //首先创建一个mack.vue  <div class="mack"> <div class="mackWeb"> <div class="title font_b">{{text.title.trim()}}</div><div class="mesg font_s">{{text.mesg.trim()}}</div><div></div><div class="footb font_s"> <div class="foot_l borderlf borderTop">{{text.btn.cancelVal}}</div><div class="foot_r borderTop">{{text.btn.confirmVal}}</div></div></div></div> //写js  //css  .mack { position: fixed; width: 100%; height: 100%; overflow: hidden; top: 0; left: 0; background: rgba(21, 21, 21, 0.7); .font_b { font-size: 14/50rem; color: #231a2f; } .font_s { font-size: 12/50rem; color: #655a72; } .borderTop { border-top: 1/50rem solid #e4e4e4; } .mackWeb { background: #ffffff; width: 300/50rem; min-width: 300/50rem; margin: auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); .title { text-align: center; padding: 15/50rem 15/50rem 0 15/50rem; } .mesg { padding: 15/50rem; text-align: center; } .footb { display: inline-table; width: 100%; .borderlf { border-right: 1/50rem solid #e4e4e4; } div { display: table-cell; box-sizing: border-box; text-align: center; padding: 10/50rem 0; } } } } 

2.接着你需要一个js:mackjs.js

 import Vue from 'vue'; import confirm from './mack'; let confirmConstructor = Vue.extend(confirm); let theConfirm = function (text) { return new Promise((res, rej) => { //promise封装,ok执行resolve,no执行rejectlet let confirmDom = new confirmConstructor({ el: document.createElement('div') }) document.body.appendChild(confirmDom.$el); //new一个对象,然后插入body里面 confirmDom.text = Object.assing( confirmDom.text,text);  //为了使confirm的扩展性更强,这个采用对象的方式传入,所有的字段都可以根据需求自定义 confirmDom.ok = function () { res() confirmDom.isShow = false } confirmDom.close = function () { rej() confirmDom.isShow = false } }) } export default theConfirm;<strong>本文来源gaodaima#com搞(代@码$网6</strong> //暴露出去,别忘记挂载到vue的原型上 //  => 在main.js里面先引入 import theConfirm from './components/confirm/confirm.js' //  => 再挂载 Vue.prototype.$confirm = theConfirm; //在需要的地方直接用以下方法调用即可: //  this.$confirm({ //   type:'提示', //   msg:'是否删除这条信息?', //   btn:{ //     ok:'yes', //     no:'no' //   } // }).then(() => { //   console.log('ok') // }) // .catch(() => { //   console.log('no') // })

-3.你接着需要在main.js导入这个文件

 import macksjs from './assets/mackjs' Vue.prototype.$confirm= macksjs ;

-4.最后在你需要引入的vue文件中直接调用就好了

 <button>我是弹出框</button> methods:{ deleteaas() { this.$confirm({ title: "addd", mesg: "您确定不再关注该客户吗?", cntMsg: '<div class="helAA">你好</div>', cancelValStyle:{color:'red'}, btn: { confirmVal: "确a定", cancelVal: "取a消" } }) .then(() => { console.log("yes"); //点击确定之后的处理 }) .catch(() => { console.log("no"); }); } }

导入

总结

以上所述是小编给大家介绍的vue弹出框组件封装实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对gaodaima搞代码网网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

以上就是vue弹出框组件封装实例代码的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:vue弹出框组件封装实例代码

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址