uniapp vue里按钮上的文字,换行的方法,用rich-text

时间:2024-11-13 07:25:38

<rich-text class="caption-1" v-if="voiceTis === '识别中...点击停止'"  v-html="formattedVoiceTis"></rich-text>
                                <text class="caption-1" v-else>{{ formattedVoiceTis }}</text>

formattedVoiceTis() {
                    if (this.voiceTis === '识别中...点击停止') {
                        console.log("在formattedVoiceTis中,输出 识别中...点击停止")
                        return '<div>识别中...<br>点击停止</div>'; // 使用 <br> 来插入换行          
                    }
                    return this.voiceTis; // 返回其他文本的值
                }

这么写,基本上在按钮上可以换行显示文字了。问chatgpt,chatgpt竟然不知道 rich-text,也是醉了。。

附注:代码里面的 “<div>  </div>”,可要,可不要