baozhengrui

导航

2025年4月25日 #

对话框模式

摘要: <template> <div class="content" :style="{ right: visible ? '10px' : '-100%' }"> <el-row style="width:100%;height:100%;"> <el-col :span="24" style="hei 阅读全文

posted @ 2025-04-25 16:21 芮艺 阅读(52) 评论(0) 推荐(0)

模拟打字

摘要: // 模拟打字 typeEffect(arrindex, text) { let index = 0; const typeNextChar = () => { if (index < text.length) { // 每次增加一个字符 if (this.chatMessages[arrindex 阅读全文

posted @ 2025-04-25 16:17 芮艺 阅读(22) 评论(0) 推荐(0)