404.vue 330 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view >
  3. <view class="404">哦呦,附件或页面未发现!</view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style>
  17. /deep/ uni-view{
  18. font-size: 30px;
  19. text-align: center;
  20. padding-top: 100rpx;
  21. color: #0A98D5;
  22. }
  23. </style>