1 Star 0 Fork 141

ZaoAnTech/免费开源电子合同

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 845 Bytes
一键复制 编辑 原始数据 按行查看 历史
何俊峰 提交于 2023-02-23 10:21 . 更新功能及优化
/*
* @Description:
* @LastEditTime: 2022-12-07 18:09:29
* @LastEditors: 刘仁秀
* @Author: 刘仁秀
* @Date: 2022-09-02 15:21:16
*/
import App from './App';
// #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({
...App,
});
app.$mount();
// #endif
import common from './common/common.js';
import setting from './common/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,
};
}
// #endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zaoantech/mini-contract.git
git@gitee.com:zaoantech/mini-contract.git
zaoantech
mini-contract
免费开源电子合同
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385