This time I will show you how to use vue.extend to implement the alert modal box pop-up component, and how to use vue.extend to implement the alert modal box pop-up component. What are the precautions? , here is the actual combat Let’s take a look at the case.
alert.js file code
import Vue from 'vue' // 创建组件构造器 const alertHonor = Vue.extend(require('./alert.vue')); var currentMsg = {callback:function(){ }} export default function(options){ var alertComponent = new alertHonor({el: document.createElement('p')}); alertComponent.title = options.title; alertComponent.ranking = options.ranking; // 把alertHonor.vue加入body中 alertComponent.$appendTo(document.body); // 回调函数 alertComponent.callback = function(action) { if (action == 'share') { options.share(); } }; }
alert.vue code
<template> <p class="alertHonor" v-if="showAlertHonor"> <p class="alertHonorBox" @click="alertHonorClick"></p> <p class="honorWindow"> <p class="honorClose" @click="honorClose"></p> <p class="honorBg"> <p class="honorShare"> <p class="honorBgLeft">升级通知</p> <p class="honorBgRight" @click='handleActions("share")'>分享</p> </p> <p class="honorText">{{title}}</p> </p> <p class="honorRanking"> {{ranking}} </p> </p> </p> </template> <script> export default{ props:{ img:{type:String}, //图片 title:{type:String}, //达人昵称 ranking:{type:String}, //排名 share:{type:Function}, //分享 }, data(){ return{ showAlertHonor:true } }, methods:{ alertHonorClick(){ //点击其他区域 this.showAlertHonor = false; //关闭整个窗口 }, honorClose(){ //点击关闭图标 this.showAlertHonor = false; }, handleActions(action){ this.callback(action); } } } </script>
Reference page code
<script> import AlertHonor from '../alert.js' export default{ data(){ return{ title:'我的荣誉' } }, ready(){ }, methods:{ back(){ alert(1) }, submit(){ var vm = this; AlertHonor({ title:'拜访达人', ranking:'您在全国排名第99', share: function(){ vm.share(); } }); }, share(){ //点击分享 alert('分享'); }, } } </script>
I believe you have mastered the method after reading the case in this article. For more exciting content, please pay attention to other related articles on the php Chinese website!
Recommended reading:
How to use Vue to implement click time to obtain time period query
How to use vue pop-up message component
The above is the detailed content of How to use vue.extend to implement alert modal box pop-up component. For more information, please follow other related articles on the PHP Chinese website!