404.vue 253 B

123456789101112131415161718
  1. <template>
  2. <view>
  3. <empty-box type="service" btnText="首页" @onEvents="goHome"></empty-box>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. methods: {
  9. goHome(){
  10. this.$utils.switchTab("index/index");
  11. }
  12. }
  13. }
  14. </script>
  15. <style>
  16. </style>