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
28
29
| <template>
| <div class="info-container">
| <div class="info-content">
| <div class="info-wrapper">
| <InfoData></InfoData>
| </div>
| </div>
| </div>
| </template>
|
| <script setup>
| import InfoData from '../info-data/index.vue';
| </script>
|
| <style lang="scss" scoped>
|
| .info-container {
| position: relative;
| .info-content {
| top: 0;
| left: 0;
| right: 0;
| position: absolute;
| }
| .info-wrapper {
| width: 100%;
| }
| }
| </style>
|
|