Toast 面包块提示 - 图1

参数

参数 说明 类型 可选值 默认值
text 内容文字 stirng —— ——
type 类型 stirng success & error & loading ——
duration 时长 number —— 2500

使用示例

  1. <template>
  2. <div>
  3. <button @click="showToast">点击显示 Toast</button> <br/>
  4. <button @click="showToast2">点击显示 Loading Toast</button> <br/>
  5. <button @click="showToast3">点击显示 success Toast</button> <br/>
  6. <button @click="showToast4">点击显示 error Toast</button>
  7. </div>
  8. </template>
  9. <script>
  10. import Vue from 'vue'
  11. import { Toast } from 'genie-ui'
  12. Vue.use(Toast)
  13. export default{
  14. methods: {
  15. showToast(v) {
  16. this.$toast({
  17. text: '这是一个简单的小情歌',
  18. duration: 2500
  19. })
  20. },
  21. showToast2(v) {
  22. this.$toast({
  23. type: 'loading',
  24. text: '正在修改中...',
  25. duration: 2500
  26. })
  27. },
  28. showToast3(v) {
  29. this.$toast({
  30. type: 'success',
  31. text: '修改成功',
  32. duration: 2500
  33. })
  34. },
  35. showToast4(v) {
  36. this.$toast({
  37. type: 'error',
  38. text: '定时修改失败<br/>请检查设备是否在线',
  39. duration: 2500
  40. })
  41. }
  42. }
  43. }
  44. </script>