DialogSuggestion.vue 411 B

1234567891011121314151617181920
  1. <template>
  2. <div class="dialog-suggestion">
  3. <div>对话推荐项,当一轮对话结束后,可能有其他推荐的内容项目,在对话结束处进行展示。</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-suggestion {
  13. margin-top: 30px;
  14. margin-bottom: 30px;
  15. color: var(--color-text-1);
  16. }
  17. </style>