404.vue 427 B

123456789101112131415161718192021
  1. <template>
  2. <a-result status="404" title="404" sub-title="系统升级维护中。">
  3. <template #extra>
  4. <a-button type="primary" @click="gohome">返回首页</a-button>
  5. <a-button type="dashed" @click="goback">返回上一页</a-button>
  6. </template>
  7. </a-result>
  8. </template>
  9. <script>
  10. export default {
  11. methods: {
  12. gohome() {
  13. location.href = '/'
  14. },
  15. goback() {
  16. this.$router.go(-1)
  17. }
  18. }
  19. }
  20. </script>