12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <div class="layout-404">
- <div class="_404">
- <img :src="`${$cdn}images/404.png`" alt="">
- <p>抱歉,您访问的页面出现了错误,请重新加载</p>
- <div @click="$router.push({name:'home'})">返回首页</div>
- </div>
- </div>
- </template>
- <script>
- export default {
- }
- </script>
- <style lang="scss" scoped>
- .layout-404{
- position: relative;
- min-height: 90vh;
- ._404{
- top: 50%;
- left: 50%;
- position: absolute;
- transform: translate(-50%,-50%);
- text-align: center;
- font-size: 16px;
- color: #2d2d2d;
- p{
- margin: 30px 0;
- }
- div{
- border: 1px solid #2d2d2d;
- border-radius: 8px;
- width: 120px;
- line-height: 40px;
- height: 40px;
- margin: 0 auto;
- cursor: pointer;
- }
- }
- }
- </style>
|