19 lines
462 B
Vue
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>
|