index.vue 1.88 KB
<template>
  <div class="container">

    <div class="doc-title zan-hairline--bottom">TOAST</div>

    <div class="zan-btns" style="margin-top: 15vh;">
      <button class="zan-btn" @click="showToast">
        显示toast
      </button>

      <button class="zan-btn" @click="showIconToast">
        显示 Icon 图标的toast
      </button>

      <button class="zan-btn" @click="showImageToast">
        自定义图片作为图标的toast
      </button>

      <button class="zan-btn" @click="showLoadingToast">
        显示 Loading toast
      </button>

      <button class="zan-btn" @click="showOnlyIcon">
        只显示图标的toast
      </button>

      <button class="zan-btn" @click="showLoading">
        显示 Loading
      </button>
    </div>

    <_toast />
  </div>
</template>

<script>
  import { getComponentByTag } from '../../utils/helper'
  import ZanToast from '../../components/zan/toast'
  export default {
    components: {
      _toast: ZanToast
    },
    data  () {
      return {
      }
    },
    mounted () {
      this.toast = getComponentByTag(this, '_toast')
    },
    methods: {
      showToast () {
        this.toast.showZanToast('toast的内容')
      },

      showIconToast () {
        this.toast.showZanToast({
          title: 'toast的内容',
          icon: 'fail'
        })
      },

      showImageToast () {
        this.toast.showZanToast({
          title: 'toast的内容',
          image: 'https://b.yzcdn.cn/v2/image/dashboard/secured_transaction/suc_green@2x.png'
        })
      },

      showLoadingToast () {
        this.toast.showZanToast({
          title: 'toast的内容',
          icon: 'loading'
        })
      },

      showOnlyIcon () {
        this.toast.showZanToast({
          icon: 'fail'
        })
      },

      showLoading () {
        this.toast.showZanLoading('加载中')
      }
    }
  }
</script>
<style  scoped >
</style>