DialogWelcome.vue 524 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="dialog-welcome-content">
  3. <div>
  4. <!-- <span>对话欢迎内容:欢迎内容应该按照agent进行配置,最好是从后端进行返回</span> -->
  5. </div>
  6. </div>
  7. </template>
  8. <script setup>
  9. // const props = defineProps({});
  10. </script>
  11. <style lang="css" scoped>
  12. .dialog-welcome-content {
  13. margin-top: 30px;
  14. margin-bottom: 30px;
  15. margin-left: auto;
  16. margin-right: auto;
  17. color: var(--color-text-1);
  18. /* background-color: #aaa; */
  19. width: 300px;
  20. height: 300px;
  21. }
  22. </style>