加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 788 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mo 提交于 2020-06-05 09:10 . 初始化
import Vue from 'vue'
import App from './App'
import uView from "uview-ui";
import store from '@/store';
import * as filters from '@/filter/index.js'
const vuexStore = require("@/store/$u.mixin.js");
Vue.mixin(vuexStore);
Vue.use(uView);
Object.keys(filters).forEach(name=>{
Vue.filter(name,filters[name])
})
Vue.config.productionTip = false
App.mpType = 'app'
Promise.prototype.finally = function(callback) {
let constructor = this.constructor;
return this.then(function(value) {
return constructor.resolve(callback()).then(function() {
return value
})
}, function(issue) {
return constructor.resolve(callback()).then(function() {
throw issue
})
})
}
const app = new Vue({
store,
...App
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化