1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| <template>
| <dialog open>
| <slot></slot>
| </dialog>
| </template>
|
| <style scoped>
| dialog {
| margin: 0;
| position: fixed;
| top: 20vh;
| left: 30%;
| width: 40%;
| background-color: white;
| box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
| padding: 1rem;
| }
| </style>
|
|