提交 | 用户 | 时间
|
759b1c
|
1 |
import Vue from 'vue' |
H |
2 |
import App from './App.vue' |
|
3 |
import router from '@/router' |
|
4 |
import '@/styles/index.scss' |
|
5 |
import '@/assets/icons' |
|
6 |
import axios from 'axios' |
|
7 |
import Tinymce from '@/components/tinymce/index.vue' |
|
8 |
|
|
9 |
Vue.component('tinymce', Tinymce) |
|
10 |
|
|
11 |
Vue.config.productionTip = false |
|
12 |
Vue.prototype.$axios = axios |
|
13 |
|
|
14 |
// add by iailab:引用自 https://github.com/JakHuang/form-generator/tree/dev/src/views/index |
|
15 |
|
|
16 |
new Vue({ |
|
17 |
router, |
|
18 |
render: h => h(App) |
|
19 |
}).$mount('#app') |