error.vue 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <div class="error">
  3. <div class="section">
  4. <div class="container">
  5. <div class="btn-click">
  6. <a href="/"><i class="fa fa-home" style="margin-right:5px;"></i>返回首页</a>
  7. </div>
  8. </div>
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. props: ['error']
  15. }
  16. </script>
  17. <style scoped lang="scss">
  18. .section{
  19. background: #ebfdff url('/img/404.png')no-repeat center center;
  20. height:900px;
  21. position:relative;
  22. }
  23. .section .btn-click{
  24. position:absolute;
  25. top:54%;
  26. left:50%;
  27. margin-left:-150px;
  28. }
  29. .section .btn-click a{
  30. display:inline-block;
  31. width:130px;
  32. height:33px;
  33. font-size: 16px;
  34. line-height: 33px;
  35. color:#fff;
  36. background: #f87c29;
  37. text-align: center;
  38. margin:0 10px;
  39. border-radius: 2px;
  40. text-decoration: none;
  41. }
  42. </style>