Files
offerpai_web/src/components/tools/AiThinkingIndicator.vue
T
2026-05-06 15:07:44 +08:00

19 lines
462 B
Vue

<template>
<!-- AI正在思考中的加载指示器 -->
<div class="ai-thinking-indicator">
<div class="ai-thinking-indicator__bubble">
{{ text }}<el-icon class="ai-thinking-indicator__icon is-loading"><Loading /></el-icon>
</div>
</div>
</template>
<script setup lang="ts">
import { Loading } from '@element-plus/icons-vue'
/** 组件属性 */
defineProps<{
/** 提示文字,默认"AI正在思考中" */
text?: string
}>()
</script>