12345678910111213141516171819202122 |
- <template>
- <div class="http-404">
- <h1>404</h1>
- </div>
- </template>
- <script>
- export default {
- name: 'Page404'
- };
- </script>
- <style lang="scss">
- .http-404 {
- position: absolute;
- top: 40%;
- left: 50%;
- font-size: 32px;
- color: rgb(0, 174, 255);
- transform: translate(-50%, -50%);
- }
- </style>
|