404.vue 393 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <el-container>
  3. <el-main>
  4. <nav-bar />
  5. <el-row>
  6. <div style="height: 720px; text-align: center;">
  7. <h1>Not Found!</h1>
  8. </div>
  9. </el-row>
  10. </el-main>
  11. </el-container>
  12. </template>
  13. <script>
  14. import NavBar from 'components/layout/NavBar'
  15. export default {
  16. name: 'NotFound',
  17. components: {
  18. NavBar
  19. }
  20. }
  21. </script>
  22. <style>
  23. </style>