| 12345678910111213141516171819202122232425262728293031323334353637 |
- <script setup>
- </script>
- <template>
- <div class="w-8/12 h-5/6 p-2 rounded flex flex-col justify-center border bg-white">
- <div class="p-header mx-1.5 h-16 text-2xl flex border-b ">
- <div class="icon-btn-group">
- <slot name="close-group"></slot>
- </div>
- <slot name="header"></slot>
- </div>
- <div class="p-con w-full px-1">
- <slot></slot>
- </div>
- <div class="p-header w-full mt-2 h-4">
- <slot name="footer"></slot>
- </div>
- </div>
- </template>
- <style scoped>
- .p-header{
- height:35px;
- position: relative;
- cursor: default;
- }
- .p-con {
- height: calc(100% - 80px);
- }
- .icon-btn-group{
- position: absolute;
- right: 0;
- top: 0;
- height: 100%;
- }
- </style>
|