码迷,mamicode.com
首页 > 其他好文 > 详细

cube-ui按钮配合toast单例模式应用

时间:2019-11-08 17:43:40      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:set   efault   gone   单例   show   timeout   类型   设置   template   

<template>
  <div>
    <cube-button icon="cubeic-right" @click="goNext">Button With Icon</cube-button>
  </div>
</template>

<script>
export default {
  methods:{
    goNext(){
      const toast = this.$createToast({
        txt: Loading..., // 提示信息
        type: correct, // type 字段决定了 Toast 的显示图标类型 txt纯文本常用
        time: 3000, // 显示时间长短
        maskClosable: true, // 点击蒙层是否隐藏
        mask: true // mask 设置为 true 时会显示遮罩
      })
      toast.show() // 实例方法(显示)
      setTimeout(() => {
        toast.hide() // 实例方法(隐藏)加setTimeout原有 + 1s
        console.log(11111) // 11111
      }, 2000)
    }
  }
}
</script>

<style>

</style>

 

cube-ui按钮配合toast单例模式应用

标签:set   efault   gone   单例   show   timeout   类型   设置   template   

原文地址:https://www.cnblogs.com/lhl66/p/11821782.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!