123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <div class="not-found login-home">
- <div class="login-box not-found-content">
- <h1>404</h1>
- <p>非常抱歉,您访问的页面不存在!</p>
- <el-button
- type="primary"
- icon="el-icon-arrow-left"
- @click="$router.replace({ name: 'Home' })"
- >返回首页</el-button
- >
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "not-found",
- data() {
- return {};
- },
- methods: {},
- };
- </script>
- <style lang="scss" scoped>
- .not-found-content {
- color: #333;
- background: transparent;
- h1 {
- font-size: 150px;
- line-height: 1;
- }
- p {
- font-size: 16px;
- margin-bottom: 10px;
- }
- }
- </style>
|