tall小程序和时间轴结合在小程序中
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1019 B

import Vue from 'vue';
4 years ago
import uView from 'uview-ui';
import Tall from '@/utils/tall';
import App from './App';
4 years ago
import './common/styles/index.css';
import store from './store';
import dayjs from 'dayjs';
//#ifdef H5
import './registerServiceWorker';
import AlloyFinger from 'alloyfinger';
import AlloyFingerPlugin from 'alloyfinger/vue/alloy_finger_vue';
Vue.use(AlloyFingerPlugin, { AlloyFinger });
4 years ago
// indexedDB
import indexedDB from '@/utils/indexedDB';
Vue.use(indexedDB);
//#endif
Vue.config.productionTip = false;
4 years ago
Vue.use(uView);
Vue.use(Tall);
Vue.use(dayjs);
App.mpType = 'app';
const app = new Vue({ ...App, store });
import request from '@/utils/request.js';
import user from '@/apis/user.js';
4 years ago
import project from '@/apis/project.js';
import task from '@/apis/task.js';
import plugin from '@/apis/plugin.js';
import role from '@/apis/role.js';
4 years ago
window.vm = app;
Vue.use(request, app);
Vue.use(user, app);
4 years ago
Vue.use(project, app);
Vue.use(task, app);
Vue.use(plugin, app);
Vue.use(role, app);
app.$mount();