mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-21 11:57:47 +00:00
17 lines
358 B
Vue
17 lines
358 B
Vue
<script lang="ts" setup>
|
|
interface Props {
|
|
reversal?: boolean
|
|
error?: boolean
|
|
}
|
|
|
|
defineProps<Props>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="p-2 mt-2 rounded-md" :class="[reversal ? 'bg-[#d2f9d1]' : 'bg-[#f4f6f8]']">
|
|
<span class="leading-relaxed whitespace-pre-wrap" :class="[{ 'text-red-500': error }]">
|
|
<slot />
|
|
</span>
|
|
</div>
|
|
</template>
|