12345678910111213141516171819202122232425 |
- <template>
- <div class="error-page">
- <div class="error-page-svg">
- <slot />
- </div>
- <router-link to="/home">
- <el-button type="primary">回到首页</el-button>
- </router-link>
- </div>
- </template>
-
- <style lang="scss" scoped>
- .error-page {
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- &-svg {
- width: 400px;
- margin-bottom: 50px;
- }
- }
- </style>
-
|