guonan
8 天以前 d06f7ad0231d5fb029ab8520bf442590d3bab20b
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
<template>
    <div class="preview">
        <img src="@/assets/img/vs.jpg" alt="" srcset="" />
    </div>
</template>
 
<script setup></script>
 
<style lang="less" scoped>
    .preview {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute;
        z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
        img {
            width: 100%;
            height: 100%;
        }
    }
</style>