| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <div>
- <slot name="left"></slot>
- <div class="dialog-input-attach-attrs-container">
- <BtnIframeChujuan />
- </div>
- <slot name="right"></slot>
- </div>
- </template>
- <script setup>
- import { ref, onMounted, onUnmounted } from 'vue';
- import BtnIframeChujuan from '../btn-iframe-chujuan/BtnIframeChujuan.vue';
- const props = defineProps({});
- const emit = defineEmits(['submit', 'sizeChange']);
- onMounted(() => {});
- onUnmounted(() => {});
- </script>
- <style lang="css" scoped>
- .dialog-input-attach-attrs-container {
- display: flex;
- flex-direction: column;
- border-radius: 12px;
- padding-left: 30px;
- padding-right: 30px;
- padding-bottom: 18px;
- padding-top: 18px;
- background-color: var(--color-bg-1);
- color: var(--color-text-1);
- flex-grow: 1;
- }
- </style>
|