bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

如何在Vue中自定義一個toast組件-創新互聯

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

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

第一步:寫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),失敗(wrong),加載中(loading);

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

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

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

第二步:寫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;
 }
};
// 注冊為全局組件的函數
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,不能同時出現多個toast。

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

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

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

第三步:使用

在main.js 添加如下代碼:

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

創建需要調用的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組件,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注創新互聯成都網站設計公司行業資訊頻道。

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

標題名稱:如何在Vue中自定義一個toast組件-創新互聯
文章鏈接:http://vcdvsql.cn/article10/cesgdo.html

成都網站建設公司_創新互聯,為您提供外貿建站企業建站定制網站建站公司網站內鏈網站維護

廣告

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

微信小程序開發