1 Star 0 Fork 0

吴皓/campus-all-uniapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 787 Bytes
一键复制 编辑 原始数据 按行查看 历史
吴皓 提交于 2024-04-18 22:57 . 大学生交友uniapp端
import App from './App'
import Vue from 'vue'
import './uni.promisify.adaptor'
import store from './store/index.js'
import filters from './filters/filters.js'
// 添加全局filter
Object.keys(filters).map(v => {
Vue.filter(v, filters[v])
})
//uview
import uView from "uview-ui";
Vue.use(uView);
//获取页面对象,0时为当前页面
Vue.prototype.$prevPage = function(index = 0) {
let pages = getCurrentPages();
let page = pages[pages.length - 1 + index]
return page.$vm
}
Vue.prototype.$showToast = function(title, duraction = 1000, icon = 'none') {
uni.showToast({
title: title,
icon: icon,
duration: duraction
})
// this.$showToast('已切换', 1000)
}
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/campus-all/campus-all-uniapp.git
git@gitee.com:campus-all/campus-all-uniapp.git
campus-all
campus-all-uniapp
campus-all-uniapp
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385