| 1234567891011121314151617181920 |
- <template>
- <div class="dialog-suggestion">
- <div>对话推荐项,当一轮对话结束后,可能有其他推荐的内容项目,在对话结束处进行展示。</div>
- </div>
- </template>
- <script setup>
- const props = defineProps({
- suggestion: Object
- });
- </script>
- <style lang="css" scoped>
- .dialog-suggestion {
- margin-top: 30px;
- margin-bottom: 30px;
- color: var(--color-text-1);
- }
- </style>
|