1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="not_found_box">
- <view class="not_found">404</view>
- </view>
- </template>
- <script>
- export default {
- onLoad() {},
- methods: {
- back() {}
- }
- }
- </script>
- <style lang="scss">
- .not_found_box {
- width: 100%;
- height: 500px;
- display: flex;
- align-items: center;
- justify-content: center;
- .not_found {
- font-size: 32px;
- color: rgb(0, 174, 255);
- }
- }
- </style>
|