404.vue 209 B

12345678910111213
  1. <template>
  2. <section id="error-page">
  3. <span>页面飞了……</span>
  4. </section>
  5. </template>
  6. <style>
  7. #error-page {
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. }
  12. </style>