main.js文件:
//全局定义模板
const msg = (title, duration=1500, mask=false, icon='none')=>{
//统一提示方便全局修改
if(Boolean(title) === false){
return;
}
uni.showToast({
title,
duration,
mask,
icon
});
}
//挂载
Vue.prototype.$api = {msg, json, prePage};
//实例引用
this.$api.msg('点击了搜索框');
网友评论