如下所示:
首先我们需要创建 confirm.vue , confirm.js这两个文件,一个实现dom结构,一个实现相关逻辑
confirm.vue
<template> <div class="confirm" v-if="isShow"> <div class="con_box" > <div class="context"> <h6>{{text.type}}</h6> <p>{{text.msg}}</p> <div class="btn"> <span @click="close()" v-if="text.btn.no">{{text.btn.no}}</span> <span @click="ok()" v-if="text.btn.ok">{{text.btn.ok}}</span> </div> </div> </div> </div> </template> <script> export default { data(){ return{ isShow:true, text:{ type:'提示', msg:'确定删除此条信息?', btn:{ ok:'确定', no:'取消' }, } } }, methods:{ close(){ console.log('关闭'); }, ok(){ console.log('确定') } } } </script> <style scoped> .confirm{background-color:rgba(0, 0, 0, 0.6);width: 100%;height: 100%; position: fixed;top: 0;} .con_box{width: 75%;height: 22%;background-color: white;position: absolute;top: 0;bottom: 0;left: 0;right: 0;margin: auto;border-radius: 5px;} .context{padding: 10px;} .context h6{font-size: 24px;padding: 15px;} .context p{font-size: 20px;padding: 35px 15px;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;} .btn{padding: 15px;text-align: right;} .btn span{padding: 10px 35px; color: white;border-radius: 5px;} .btn span:nth-child(1){background-color: #f1f1f1;color: rgb(106, 223, 223);} .btn span:nth-child(2){background-color: rgb(106, 223, 223);} </style>
confirm.js
import Vue from 'vue'; import confirm from './confirm.vue'; 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 = text; //为了使confirm的扩展性更强,这个采用对象的方式传入,所有的字段都可以根据需求自定义 confirmDom.ok = function () { res() confirmDom.isShow = false } confirmDom.close = function () { rej() confirmDom.isShow = false } }) } export default theConfirm; //暴露出去,别忘记挂载到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') // })
main.js
// The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue' import App from './App' import router from './router' //这里就是对组件的绑定 import theConfirm from './components/confirm/confirm.js' Vue.prototype.$confirm = theConfirm; Vue.config.productionTip = false /* eslint-disable no-new */ new Vue({ el: '#app', router, components: { App }, template: '<App/>' })
helloworld.vue
<template> <div class="hello"> <span @click="handMe()">点击一下</span> </div> </template> <script> export default { name: 'HelloWorld', data () { return { } }, methods:{ handMe(){ this.$confirm({ type:'提示', msg:'是否删除这条信息?', btn:{ ok:'yes', no:'no' } }).then(() => { console.log('ok') }) .catch(() => { console.log('no') }) } } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> span{font-size: 24px;} </style>
以上这篇vue封装可复用组件confirm,并绑定在vue原型上的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持小牛知识库。
如何在Vue.js中将父模型绑定到子模型? 如果我手动填写输入,那么孩子的模型返回它的值到父的模型。 但问题是,如果来自AJAX的数据集在父级中请求,那么输入不会自动填充。 有人能帮我吗? Form.vue FormInput.vue
本文向大家介绍vue双向绑定原理?相关面试题,主要包含被问及vue双向绑定原理?时的应答技巧和注意事项,需要的朋友参考一下 参考回答: vue数据双向绑定是通过数据劫持结合发布者-订阅者模式的方式来实现的。利用了 Object.defineProperty() 这个方法重新定义了对象获取属性值(get)和设置属性值(set)。
本文向大家介绍vue弹出框组件封装实例代码,包括了vue弹出框组件封装实例代码的使用技巧和注意事项,需要的朋友参考一下 新学vue,参考别人封装弹出层组件。好用! 1.你需要先建一个弹出框的模板: 2.接着你需要一个js:mackjs.js -3.你接着需要在main.js导入这个文件 -4.最后在你需要引入的vue文件中直接调用就好了 导入 总结 以上所述是小编给大家介绍的vue弹出框组件封装实
本文向大家介绍vue axios 二次封装的示例代码,包括了vue axios 二次封装的示例代码的使用技巧和注意事项,需要的朋友参考一下 这段时间告诉项目需要,用到了vue。 刚开始搭框架的时候用的是vue-resource后面看到官方推荐axios就换过来了 顺便封装了一下 说明 1、为防止发起请求时,当前正在进行的相同请求,在请求拦截器中加入了hash判断,将相同请求url拦截 2、将axi
本文向大家介绍Vue 表单控件绑定的实现示例,包括了Vue 表单控件绑定的实现示例的使用技巧和注意事项,需要的朋友参考一下 本文介绍了Vue 表单控件绑定的实现示例,感觉这个地方知识点挺多的,而且很重要,所以,今天添加一点小笔记。 基础用法 可以用 v-model 指令在表单控件元素上创建双向数据绑定。根据控件类型它自动选取正确的方法更新元素。尽管有点神奇,v-model 不过是语法糖,在用户输入
本文向大家介绍Vue 数据绑定的原理分析,包括了Vue 数据绑定的原理分析的使用技巧和注意事项,需要的朋友参考一下 原理 其实原理很简单,就是拦截了Object的get/set方法,在对数据进行set(obj.aget=18)时去重现渲染视图 实现方式有两种 方式1 定义了同名的get/set就相当于定义了age 为了让test不显示多余的变量,可以把_age定义在外部 方式2 使用这种方式完美的