DialogWelcome.vue 391 B

1234567891011121314151617181920
  1. <template>
  2. <div class="dialog-welcome-content">
  3. <div>对话欢迎内容:欢迎内容应该按照agent进行配置,最好是从后端进行返回</div>
  4. </div>
  5. </template>
  6. <script setup>
  7. const props = defineProps({
  8. suggestion: Object
  9. });
  10. </script>
  11. <style lang="css" scoped>
  12. .dialog-welcome {
  13. margin-top: 30px;
  14. margin-bottom: 30px;
  15. color: var(--color-text-1);
  16. }
  17. </style>