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

Posted lhl66

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cube-ui按钮配合toast单例模式应用相关的知识,希望对你有一定的参考价值。

<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单例模式应用的主要内容,如果未能解决你的问题,请参考以下文章

单例模式

单例模式

单例模式

[JavaScript设计模式]惰性单例模式

安卓开发问题,页面上只有一个按钮,我要点击按钮显示一个toast,但是点击后没有出现!我在toas

[JavaScript设计模式] 什么是单例模式