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

溫馨提示×

溫馨提示×

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

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

怎么使用flexible的Vue組件Toast顯示框

發布時間:2022-04-28 17:15:03 來源:億速云 閱讀:187 作者:iii 欄目:大數據

這篇文章主要介紹了怎么使用flexible的Vue組件Toast顯示框的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇怎么使用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顯示框”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“怎么使用flexible的Vue組件Toast顯示框”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

漠河县| 华亭县| 瑞丽市| 云南省| 镇原县| 石棉县| 万载县| 乐陵市| 洪泽县| 绥滨县| 正宁县| 扬州市| 棋牌| 阳朔县| 大安市| 南召县| 图片| 海伦市| 连平县| 赞皇县| 汝阳县| 安康市| 东宁县| 枞阳县| 长寿区| 元朗区| 通州区| 通河县| 巢湖市| 乌拉特后旗| 迭部县| 托克托县| 永泰县| 南雄市| 潍坊市| 友谊县| 普兰县| 利津县| 五寨县| 大关县| 辽源市|