1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <template>
| <div class="center">
| <img src="../assets/404.gif" alt="">
| </div>
| </template>
|
| <script>
| export default {
| };
| </script>
|
| <style scoped>
| .center{
| position: fixed;
| left: 50%;
| top: 50%;
| transform: translate(-50%,-50%);
| }
| img{
| width: 300px;
| }
| </style>
|
|