| 1234567891011121314151617181920 |
- <template>
- <div class="dialog-welcome-content">
- <div>对话欢迎内容:欢迎内容应该按照agent进行配置,最好是从后端进行返回</div>
- </div>
- </template>
- <script setup>
- const props = defineProps({
- suggestion: Object
- });
- </script>
- <style lang="css" scoped>
- .dialog-welcome {
- margin-top: 30px;
- margin-bottom: 30px;
- color: var(--color-text-1);
- }
- </style>
|