404.vue 738 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view>
  3. <view>
  4. <h1 style="color: aqua;" id="myButton" @click="triggerPopup()">11111111111</h1>
  5. <text style="font-size: 25px;color: #333;">
  6. 404 Page Not Found
  7. </text>
  8. </view>
  9. <view>
  10. <text style="font-size: 18px;color: #999;">
  11. {{errMsg}}
  12. </text>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. }
  21. },
  22. onLoad(query) {
  23. this.errMsg = query.errMsg || ''
  24. },
  25. methods: {
  26. show(){
  27. },
  28. triggerPopup(){
  29. window.location.href = "#/pages/error/400";
  30. }
  31. }
  32. }
  33. </script>
  34. <style>
  35. </style>