vue项目中可用的toast弹框提示组件

使用的vue文件:

<template>
  <div>
    // 点击使用toast方法
  	<div class="clickDiv" @click="toToast('请输入正确的电话号码')">click me</div>
  	// toast对应代码块
	<div class="toast" v-if="isShowToast">
	    {{toastText}}
	</div>
  </div>
</template>

js代码:

<script>
export default {
  name: 'End',
  data () {
    return {
      isShowToast: false,
      toastText: ''
    }
  },
  methods: {
    toToast(msg){
      let that = this
      that.toastText = msg
      that.isShowToast = true
      setTimeout(function(){
        that.toastShow = false
      }, 2000)
    },
  }
}
</script>

css文件:

.toast {
  position: fixed;
  z-index: 999;
  left: 50%;
  top:50%;
  color:rgb(255, 255, 255);
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  height: 45px;
  line-height: 45px;
  padding: 0 10px;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%); 
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值