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
27
| <template>
| <div class="not-found">
| <div class="not-found-content">
| <div class="content-container">
| <img src="../../assets/images/404.png">
| </div>
| </div>
|
| </div>
| </template>
|
| <style scoped>
| .not-found {
| display: flex;
| height: 100%;
| justify-content: center; /* 水平居中 */
| align-items: center; /* 垂直居中 */
| }
| .content-container {
| -webkit-user-select: none;
| -moz-user-select: none;
| -ms-user-select: none;
| user-select: none;
| display: inline-block;
| margin: 0 auto;
| }
| </style>
|
|