這篇文章將為大家詳細(xì)講解有關(guān)vue.extend中怎么實現(xiàn)一個alert模態(tài)框彈窗組件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供遂川網(wǎng)站建設(shè)、遂川做網(wǎng)站、遂川網(wǎng)站設(shè)計、遂川網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、遂川企業(yè)網(wǎng)站模板建站服務(wù),10多年遂川做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
alert.js文件代碼
import Vue from 'vue' // 創(chuàng)建組件構(gòu)造器 const alertHonor = Vue.extend(require('./alert.vue')); var currentMsg = {callback:function(){ }} export default function(options){ var alertComponent = new alertHonor({el: document.createElement('div')}); alertComponent.title = options.title; alertComponent.ranking = options.ranking; // 把a(bǔ)lertHonor.vue加入body中 alertComponent.$appendTo(document.body); // 回調(diào)函數(shù) alertComponent.callback = function(action) { if (action == 'share') { options.share(); } }; }
alert.vue代碼
升級通知分享{{title}}{{ranking}}
引用頁面代碼
關(guān)于vue.extend中怎么實現(xiàn)一個alert模態(tài)框彈窗組件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。