明梦爽
2022-04-17 5529b7077126be368abd444d45ec085d8c7779e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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>