| 123456789101112131415161718192021222324252627 |
- <template>
- <div class="dialog-welcome-content">
- <div>
- <!-- <span>对话欢迎内容:欢迎内容应该按照agent进行配置,最好是从后端进行返回</span> -->
- </div>
- </div>
- </template>
- <script setup>
- // const props = defineProps({});
- </script>
- <style lang="css" scoped>
- .dialog-welcome-content {
- margin-top: 30px;
- margin-bottom: 30px;
- margin-left: auto;
- margin-right: auto;
- color: var(--color-text-1);
- /* background-color: #aaa; */
- width: 300px;
- height: 300px;
- }
- </style>
|