中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

如何在Vue中自定義一個toast組件-創(chuàng)新互聯(lián)

本篇文章為大家展示了如何在Vue中自定義一個toast組件,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

創(chuàng)新互聯(lián)服務項目包括彝良網(wǎng)站建設、彝良網(wǎng)站制作、彝良網(wǎng)頁制作以及彝良網(wǎng)絡營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術優(yōu)勢、行業(yè)經驗、深度合作伙伴關系等,向廣大中小型企業(yè)、政府機構等提供互聯(lián)網(wǎng)行業(yè)的解決方案,彝良網(wǎng)站推廣取得了明顯的社會效益與經濟效益。目前,我們服務的客戶以成都為中心已經輻射到彝良省份的部分城市,未來相信會繼續(xù)擴大服務區(qū)域并繼續(xù)獲得客戶的支持與信任!

第一步:寫toast.vue,將樣式之類的先定下來

<template>
 <div v-show="showToast" class="toast" :class="position">
 <div class="toast_container" v-if="type=='success'">
  <div><i class="iconfont icon-check icon"></i></div>
  <div class="msg_container">{{message}}</div>
 </div>
 <div class="toast_container" v-else-if="type=='wrong'">
  <div><i class="iconfont icon-warning-circle icon"></i></div>
  <div class="msg_container">{{message}}</div>
 </div>
 <div class="toast_container" v-else-if="type=='loading'">
  <div><loading10></loading10></div>
  <div class="msg_container">{{message}}</div>
 </div>
</div>
</template>
<script>
import loading10 from '../loading/spiner'
export default{
 props:{
  message:String,
  type:{
   validator: function (value) {
   // 值必須是這些字符串中的一個
   return ['success', 'wrong', 'loading'].indexOf(value) !== -1
  },
   default:'success'
  },
  duration:{
   type:Number,
   default:3000
  },
   position:{
   type:String,
   default:'middle'
  }
 },
 components:{
  loading10
 },
 data(){
  return{
   showToast:false
  }
 }
}
</script>
<style scoped>
.toast{
 width:100%;
}
.toast_container{
 background: rgba(0, 0, 0, 0.7);
 border-radius: 8px;
 color:#fff;
 margin-left:88px;
 margin-right:88px;
 text-align:center;
 padding-top:15px;
 padding-bottom: 15px; 
}
.top{
 position:absolute;
 top:10%;
}
.middle{
 position:absolute;
 top:40%;
}
.bottom{
 position:absolute;
 top:70%;
}
.msg_container{
 margin-top:8px;
 margin-left:15px;
 margin-right:15px;
 line-height: 22px;
 font-size: 16px;
 word-wrap: break-word;
}
.icon{
 font-size:30px;
}
</style>

如何在Vue中自定義一個toast組件如何在Vue中自定義一個toast組件如何在Vue中自定義一個toast組件

一共三種樣式,成功(success),失?。╳rong),加載中(loading);

一共三種位置,上(top),中(middle),下(bottom);

所有涉及的圖案出自阿里的iconfont 手機淘寶圖標庫。

加載中動畫是自己寫的蹩腳的加載組件(emmm,就不放出來污染大家眼睛了,需要的可以評論區(qū)知會一聲_(:з」∠)_)

第二步:寫index.js ,完成toast組件的實例化

import Vue from 'vue'
import Toast from './toast'
let singleToast=true;
let queue=[];
function createInstance(){
 // 返回一個擴展實例構造器
 if(!queue.length||!singleToast){
 const ToastConstructor = Vue.extend(Toast);
 // 構造一個實例
 const toastDom = new ToastConstructor({
 el: document.createElement('div'),
 });
 // 把實例化的 toast.vue 添加到 body 里
 document.body.appendChild(toastDom.$el);
 queue.push(toastDom);
 singleToast=true;
 return toastDom;
 }
};
// 注冊為全局組件的函數(shù)
function toast(options= {}) {
 const toastDom = createInstance();
 toastDom.message =typeof options === 'string' ? options : options.message;
 toastDom.type = options.type || 'success';
 toastDom.duration = options.duration || 3000;
 toastDom.position = options.position || 'middle';
 if(!toastDom.message){
 toastDom.showToast =singleToast= false;
 }else{
 toastDom.showToast=true;
 setTimeout(() => {toastDom.showToast =singleToast= false} ,toastDom.duration);
 }
}
// 將組件注冊到 vue 的 原型鏈里去,
// 這樣就可以在所有 vue 的實例里面使用 this.$toast()
// Vue.prototype.$toast = showToast
Vue.prototype.$toast = toast;
export default toast

設置singleToast和queue的目的在于:確保同一時期界面上只有一個toast,不能同時出現(xiàn)多個toast。

由于toast會初始化,因此為了避免在任何操作之前界面上就出現(xiàn)一個toast,用if語句判斷:

如果沒有傳入的message,則不顯示toast(這樣可以使得初始化的toast不顯示)

否則顯示,并且過一定時間消失,只有singleToast為false,說明此刻界面上沒有toast,才能再新建一個toast實例(因為此時if判斷內queue.length 不為0【初始化的toast組件本身占了一個位置】,而singleToast為false,因此可以創(chuàng)建)

第三步:使用

在main.js 添加如下代碼:

import toast from './components/toast/index'
Vue.use(toast)

創(chuàng)建需要調用的Vue文件:

<template>
 <div>
  <input type="button" value="顯示彈窗" @click="showToast">
 </div>
</template>
 <script>
 export default {
  methods: {
   showToast () {
    this.$toast({message:'加載中',type:'loading',position:'bottom',
     duration:'2000'});
    // this.$toast('成功提示');
   }
  }
 }
 </script>

如何在Vue中自定義一個toast組件

上述內容就是如何在Vue中自定義一個toast組件,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注創(chuàng)新互聯(lián)成都網(wǎng)站設計公司行業(yè)資訊頻道。

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。

標題名稱:如何在Vue中自定義一個toast組件-創(chuàng)新互聯(lián)
文章鏈接:http://www.rwnh.cn/article10/cesgdo.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供外貿建站、企業(yè)建站定制網(wǎng)站、建站公司、網(wǎng)站內鏈、網(wǎng)站維護

廣告

聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

微信小程序開發(fā)
罗山县| 霸州市| 霍州市| 理塘县| 五莲县| 遂昌县| 辉县市| 曲阜市| 弥勒县| 兰州市| 双峰县| 开平市| 米易县| 双流县| 紫阳县| 车险| 锡林浩特市| 册亨县| 吉木萨尔县| 正宁县| 秭归县| 中宁县| 万荣县| 大安市| 东乡族自治县| 阳原县| 岱山县| 石家庄市| 栾城县| 东光县| 武汉市| 石林| 呼玛县| 丽江市| 乡宁县| 长子县| 开平市| 同江市| 双牌县| 平乐县| 巨野县|