123456789101112131415161718 |
- import Vue from 'vue'
- import App from './App'
- import store from './store'
- import httpApi from '@/utils/http'
- import verification from '@/static/js/verification' //自定义表单验证
- //import html2canvas from 'html2canvas';
- // import jspdf from 'jspdf';
- Vue.prototype.$httpApi = httpApi
- //Vue.prototype.$html2canvas = html2canvas
- Vue.config.productionTip = false
- App.mpType = 'app'
- Vue.use(verification)
- const app = new Vue({
- store,
- ...App
- })
- app.$mount()
|