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