ErrorPageLayout.vue 484 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="error-page">
  3. <div class="error-page-svg">
  4. <slot />
  5. </div>
  6. <router-link to="/home">
  7. <el-button type="primary">回到首页</el-button>
  8. </router-link>
  9. </div>
  10. </template>
  11. <style lang="scss" scoped>
  12. .error-page {
  13. height: 100%;
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: center;
  17. align-items: center;
  18. &-svg {
  19. width: 400px;
  20. margin-bottom: 50px;
  21. }
  22. }
  23. </style>