显示消息提示框就就是点击按钮操作成功提示的消息
官方文档 : https://uniapp.dcloud.io/api/ui/prompt?id=showtoast
// 实例代码
methods: {
follow(e){
console.log(e)
this.list[0].isFollow = true
uni.showToast({
title:"关注成功"
})
}
}