前提
目前成都創新互聯已為上千余家的企業提供了網站建設、域名、網站空間、網站托管、服務器托管、企業網站設計、懷遠網站維護等服務,公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協力一起成長,共同發展。
前段時間自己做的vue練手項目,需要一個通用的消息提示組件,但是消息提示這種組件我更想用方法來調用,而不是在各個頁面上都添加個組件(那樣感覺很麻煩,重度懶癌患者),于是就上網差查了查,并研究了ElementUI的message源碼。自己弄出來一個簡陋的消息提示組件
Vue.extend是什么
按照官方文檔說法,他是一個類構造器,用來創建一個子類vue并返回構造函數,而Vue.component它的任務是將給定的構造函數與字符串ID相關聯,以便Vue.js可以在模板中接收它。
了解了這點之后我們開始做我們的消息提示組件吧。
消息提示組件
首先我們先創建我們的提示組件的模板
<template> <transition name="message-fade"> <div class="message" v-show="show"> <span class="icon"><icon name="info"></icon></span> <p>{{message}}</p> </div> </transition> </template> <script> export default { name: 'v-message', mounted(){ this.StartTime(); }, data(){ return { message: '123', show: false, timer: null } }, methods:{ StartTime(){ this.show = true; if(this.timer){ clearTimeOut(this.timer) }else{ this.timer = setTimeout(()=>{ this.show = false }, 3000); } } } } </script>
之后我們需要用將message.vue傳到Vue.extend()里
import Vue from 'vue'; let MessageBox = Vue.extend(require('./message.vue')); let instance; var message = function(options){ if(typeof options === 'string'){ options = { message: options } } //生成組件 instance = new MessageBox({ data: options }) //組件需要掛載在dom元素上 instance.vm = instance.$mount(); //根據不同的類型,設置不同消息的背景顏色 if(options.type){ instance.vm.$el.children[0].className += ` icon__${options.type}`; } document.body.appendChild(instance.vm.$el); return instance.vm; } const type = ['success', 'info', 'warning', 'error']; type.forEach((type)=>{ message[type] = options =>{ if(typeof options === 'string'){ options = { message: options } } options.type = type; return message(options); } }) export default message;
之后用掛在全局方法上,之后用this.$message()方法調用
vue.prototype.$message = message;
最后的效果圖
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創新互聯。
分享標題:用Vue.extend構建消息提示組件的方法實例
標題URL:http://vcdvsql.cn/article18/pdecdp.html
成都網站建設公司_創新互聯,為您提供網站建設、軟件開發、面包屑導航、ChatGPT、自適應網站、定制網站
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯