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.
23 lines
581 B
23 lines
581 B
// @ts-ignore
|
|
import Vue from 'vue';
|
|
import './plugins/axios';
|
|
import App from './App.vue';
|
|
import './registerServiceWorker';
|
|
import router from './router';
|
|
import store from './store';
|
|
import './plugins/ant-design-vue.js';
|
|
import 'common/portrait.styl';
|
|
import './assets/icon/iconfont.css';
|
|
import VueDOMPurifyHTML from 'vue-dompurify-html';
|
|
import moment from 'moment'; //导入文件
|
|
Vue.prototype.$moment = moment; //赋值使用
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
Vue.use(VueDOMPurifyHTML);
|
|
|
|
window.vm = new Vue({
|
|
router,
|
|
store,
|
|
render: h => h(App),
|
|
}).$mount('#app');
|
|
|