uts_toast.vue 425 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view>
  3. <button @click="showUTSToast">点击按钮会在底部显示一条toast</button>
  4. </view>
  5. </template>
  6. <script>
  7. import {
  8. showToast
  9. } from "@/uni_modules/uts-toast"
  10. export default {
  11. data() {
  12. return {
  13. title: 'Hello'
  14. }
  15. },
  16. onLoad() {
  17. },
  18. methods: {
  19. showUTSToast() {
  20. showToast({
  21. message: "这是一条显示在底部的toast"
  22. })
  23. }
  24. }
  25. }
  26. </script>
  27. <style>
  28. </style>