Error.vue 644 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="page-error">
  3. <div>
  4. <img :src="require('@/assets/images/default/img_noresults@2x.png')" alt="" />
  5. <p>作品已被删除啦</p>
  6. </div>
  7. </div>
  8. </template>
  9. <script setup>
  10. </script>
  11. <style lang="scss" scoped>
  12. .page-error{
  13. width: 100%;
  14. height: 100%;
  15. background: #fff;
  16. position: relative;
  17. z-index: 9999;
  18. > div {
  19. position: absolute;
  20. top: 50%;
  21. left: 50%;
  22. transform: translate(-50%, -50%);
  23. color: #909090;
  24. text-align: center;
  25. font-size: 18px;
  26. >img{
  27. width: 120px;
  28. }
  29. > p {
  30. margin-top: 20px;
  31. }
  32. }
  33. }
  34. </style>