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>
| <icon-calendar style="color: #fff" />
| <p>{{ data }}</p>
| </div>
| </template>
| <script lang="ts" setup name="TheAdate">
| const props = withDefaults(
| defineProps<{
| data?: string;
| }>(),
| {
| data: ""
| }
| );
| </script>
| <style lang="scss" scoped>
| div {
| display: inline-flex;
| align-items: center;
| padding: 6px 12px 6px 20px;
| border-radius: 0px 90px 90px 0px;
| background: #4275ca;
| > p {
| margin-left: 8px;
| color: #fff;
| }
| }
| </style>
|
|