23 Star 175 Fork 86

Shawn / 免费开源电子合同

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 821 Bytes
一键复制 编辑 原始数据 按行查看 历史
何俊峰 提交于 2024-01-05 14:46 . 1.9.0代码更新
/*
* @Description:
* @LastEditTime: 2023-12-13 11:00:27
* @LastEditors: wudi
* @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';
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
JavaScript
1
https://gitee.com/leepm/mini-contract.git
git@gitee.com:leepm/mini-contract.git
leepm
mini-contract
免费开源电子合同
master

搜索帮助