1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  | <template> 
 |    <div class="error-page"> 
 |      <p class="page_title">404 page not found</p> 
 |      <el-button class="back" @click="$router.replace({ path: '/' })"> 返回 </el-button> 
 |    </div> 
 |  </template> 
 |  <script> 
 |  export default { 
 |    name: "PageV404" 
 |  } 
 |  </script> 
 |  <style lang="scss" scoped> 
 |  .error-page { 
 |    background: #303133; 
 |    background-blend-mode: multiply, multiply; 
 |    height: 100%; 
 |    display: flex; 
 |    justify-content: center; 
 |    align-items: center; 
 |    flex-direction: column; 
 |    .page_title { 
 |      font-size: 20px; 
 |      color: #fff; 
 |    } 
 |  } 
 |  </style> 
 |  
  |