1 Star 0 Fork 94

新生代网虫 / 免费开源电子合同

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.js 907 Bytes
一键复制 编辑 原始数据 按行查看 历史
何俊峰 提交于 2023-07-07 14:26 . 1.1.2更新
/*
* @Description:
* @LastEditTime: 2022-12-07 18:09:29
* @LastEditors: 刘仁秀
* @Author: 刘仁秀
* @Date: 2022-09-02 15:21:16
*/
import App from './App';
import store from './store/index.js'
// #ifndef VUE3
import Vue from 'vue';
import widthShare from './mixins/share';
Vue.config.productionTip = false;
Vue.mixin(widthShare)
App.mpType = 'app';
const app = new Vue({
store,
...App,
});
app.$mount();
// #endif
import common from './utils/common.js';
import setting from './config/setting.js';
Vue.prototype.setting = setting;
Vue.prototype.common = common;
import * as filters from './filters/filters.js';
Object.keys(filters).forEach(key => {
Vue.filter(key, filters[key]);
});
// #ifdef VUE3
import {
createSSRApp
} from 'vue';
export function createApp() {
const app = createSSRApp(App);
return {
app,
store
};
}
// #endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/pevy/mini-contract.git
git@gitee.com:pevy/mini-contract.git
pevy
mini-contract
免费开源电子合同
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891