91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用flexible的Vue組件Toast顯示框

發布時間:2021-06-29 10:47:46 來源:億速云 閱讀:141 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關如何使用flexible的Vue組件Toast顯示框,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

Toast -- 顯示框

效果展示

如何使用flexible的Vue組件Toast顯示框 

代碼分析

div包含icon小圖標和文字說明,構成簡單的dom結構,利用props定義變量值,用computed計算屬性對傳入的值進行解構,watch監聽彈框顯示,并結合.sync修飾符達到雙向數據綁定,同時用$emit向父組件派發事件,方便父組件監聽回調。

dom結構

<transition name="fade">
 <div class="Toast" v-if="toastShow">
 <div
 class="box"
 :
 >
 <span
 :class="iconClass"
 :
 v-if="iconIsShow"
 ></span>
 <p
 v-if="message"
 >{{message}}</p>
 </div>
 </div>
</transition>

props數據

props: {
 message: { // 提示內容
 type: String,
 },
 toastShow: { // 是否顯示
 type: Boolean,
 default: false
 },
 iconClass: { // 背景圖片
 type: String,
 },
 iconImage: { // 自定義背景圖片
 },
 duration: { // 定時器
 type: Number,
 default: 1500
 },
 position: { // 彈出框位置
 type: String,
 default: '50%'
 }
},

computed

computed: {
 // 用于判斷顯示框位置
 positionTop() {
 return {
 top: this.position
 }
 },
 // 自定義父組件傳過來的背景圖片
 iconBg() {
 if (this.iconImage) {
 return {
 backgroundImage: `url(${this.iconImage})`
 }
 } else {
 return;
 }
 },
 // 用于判斷icon是否顯示
 iconIsShow() {
 if (this.iconClass == 'success') {
 return true;
 } else if (this.iconClass == 'close') {
 return true;
 } else if (this.iconClass == 'warning') {
 return true;
 } else if (this.iconImage) {
 return true;
 } else {
 return false;
 }
 }
},

watch

watch: {
 toastShow() {
 // 監聽toast顯示,向父組件派發事件
 if (this.toastShow) {
 if (this.duration < 0) {
 this.$emit('toastClose');
 } else {
 setTimeout(()=>{
  this.$emit('update:toastShow', false) // 利用了.sync達到雙向數據綁定
  this.$emit('toastClose');
 }, this.duration)
 }
 }
 }
}

使用說明

組件地址: src/components/Toast.vue (不能npm,只能手動下載使用)

下載并放入自己項目中 —— import 引入組件 —— components中注冊組件 —— 使用

props

props說明類型可選值默認值
toastShow控制顯示框顯示、隱藏。需添加.sync修飾符才能自動關閉,詳見例子Booleanfalse 
 true
false
message提示信息String

iconClassicon小圖標Stringsuccess 
 warning 
 close

iconImage自定義小圖標(圖片需require引入)


duration定時器(毫秒),控制彈框顯示時間,負數代表不執行定時任務Number
1500
position彈框位置(距頂)String
'50%'

$emit




$emit說明參數
toastClose彈框關閉回調

示例

// 默認效果,只有提示信息
 <toast
 message = '默認信息'
 :toastShow.sync = 'isShow1' // 需添加.sync修飾符,才能達到自動關閉的效果,否則只能監聽toastClose手動關閉
 ></toast>  // 關于sync的說明,請看官網(主要是為了達到雙向數據綁定,子組件修改父組件狀態)
 
 // 增加自帶小圖標
 <toast
 message = 'success'
 iconClass = 'success'
 :toastShow.sync = 'isShow2'
 ></toast>
// 自定義類型
 <toast
 message = '自定義'
 position = '70%'
 :duration = '-1' //負數代表不執行定時任務,自己根據需要去關閉
 :iconImage='bg' // 自定義icon小圖標,在data中需require引入,看下面
 :toastShow = 'isShow5' // 因為需要手動關閉,所以不需要.sync了
 @toastClose = 'isClose5' // 監聽回調,手動關閉,看下面
 ></toast>
 
 data() {
 return {
 this.isShow5 : true,
 bg: require('../assets/logo.png'), // 圖片必須用require進來
 }
 },
 isClose5() {
 setTimeout(()=>{
 this.isShow5 = false;
 }, 2000)
 }

關于“如何使用flexible的Vue組件Toast顯示框”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蓬溪县| 通许县| 泰州市| 新兴县| 安图县| 翼城县| 万源市| 孟津县| 湘乡市| 内黄县| 黄陵县| 永和县| 古丈县| 博野县| 宣恩县| 广安市| 延川县| 琼结县| 河南省| 永兴县| 宣化县| 三台县| 陇西县| 龙游县| 宝丰县| 普宁市| 仙居县| 苏尼特左旗| 太康县| 宣城市| 商南县| 定州市| 绥江县| 铜鼓县| 北宁市| 年辖:市辖区| 平顶山市| 阿拉善右旗| 枣庄市| 稷山县| 泊头市|