转换为elementUI提示方法为uni-app的showToast提示

javascript 复制代码
// 转换为elementUI提示方法为uni-app的showToast提示----------------------------------------
// 一般提示
Vue.prototype.$message = function(title) {
	title && uni.showToast({
		icon: `none`,
		title
	});
};
// 成功提示
Vue.prototype.$message.success = (title) => {
	title && uni.showToast({
		title
	});
};
// 失败提示
Vue.prototype.$message.error = (title) => {
	title && uni.showToast({
		icon: `error`,
		title
	});
};
// 警告提示
Vue.prototype.$message.warning = (title) => {
	title && uni.showToast({
		icon: `exception`,
		title
	});
};

MessageBox 弹框 全局方法$msgbox, $alert, $confirm 和 prompt常用代码片段_setup使用msgbox-CSDN博客文章浏览阅读302次。【代码】MessageBox 弹框 全局方法$msgbox, $alert, $confirm 和 prompt常用代码片段。_setup使用msgboxhttps://blog.csdn.net/qq_37860634/article/details/137027367

相关推荐
Swift社区1 小时前
统计文本文件中单词频率的 Swift 与 Bash 实现详解
vue.js·leetcode·机器学习
Zero_pl2 小时前
vue学习路线
vue.js
寰宇软件2 小时前
PHP防伪溯源一体化管理系统小程序
小程序·uni-app·vue·php
2013crazy3 小时前
Java 基于 SpringBoot+Vue 的校园兼职平台(附源码、部署、文档)
java·vue.js·spring boot·兼职平台·校园兼职·兼职发布平台
又迷茫了3 小时前
vue + element-ui 组件样式缺失导致没有效果
前端·javascript·vue.js
爱上大树的小猪3 小时前
【前端SEO】使用Vue.js + Nuxt 框架构建服务端渲染 (SSR) 应用满足SEO需求
前端·javascript·vue.js
热忱11285 小时前
elementUI Table组件实现表头吸顶效果
前端·vue.js·elementui
大叔_爱编程5 小时前
wx035基于springboot+vue+uniapp的校园二手交易小程序
vue.js·spring boot·小程序·uni-app·毕业设计·源码·课程设计
zhaocarbon5 小时前
VUE elTree 无子级 隐藏展开图标
前端·javascript·vue.js
林涧泣6 小时前
【Uniapp-Vue3】previewImage图片预览
uni-app