| 12345678910111213141516171819202122 |
- <template>
- <div class="not-found">
- <el-result
- icon="error"
- title="404"
- sub-title="抱歉,您访问的页面不存在"
- >
- <template #extra>
- <el-button type="primary" @click="$router.push('/')">返回首页</el-button>
- </template>
- </el-result>
- </div>
- </template>
- <style scoped>
- .not-found {
- height: 100vh;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- </style>
|