ChatAsk.vue 434 B

1234567891011121314151617181920
  1. <script setup>
  2. import { SvgIcon } from "@/components";
  3. defineProps({
  4. content: {
  5. type: String,
  6. default: ''
  7. }
  8. })
  9. </script>
  10. <template>
  11. <div class="ask-inner flex items-start justify-start pl-[20px] mb-[20px]">
  12. <div class="chat-ask_icon">
  13. <SvgIcon name="chat-avatar" size="20" />
  14. </div>
  15. <p class="flex-1 pt-[6px] ml-[16px] text-[15px] font-bold leading-[24px]" v-html="content"></p>
  16. </div>
  17. </template>