import Vue from 'vue' import App from './App' import uView from "uview-ui"; Vue.use(uView); Vue.config.productionTip = false // 封装的展示消息提示的方法 uni.$showMsg = function (title = '数据加载失败!', duration = 1500) { uni.showToast({ title, duration, icon: 'none', }) } App.mpType = 'app' const app = new Vue({ ...App }) app.$mount()