404.vue 465 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="error-404-wrapper">
  3. <h2 class="title">您的页面飞走了……</h2>
  4. <img :src="error_404_img" />
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'Error_404',
  10. data() {
  11. return {
  12. error_404_img: require('_a/images/error/404.png')
  13. }
  14. }
  15. }
  16. </script>
  17. <style lang="stylus" scoped>
  18. .error-404-wrapper {
  19. display: initial !important;
  20. padding: 100px 0;
  21. text-align: center;
  22. .title {
  23. padding-bottom: 20px;
  24. }
  25. }
  26. </style>