main.js 468 Bytes
Newer Older
sunhongwei's avatar
sunhongwei committed
1 2 3 4 5 6 7 8 9 10 11 12 13
import Vue from 'vue'
import App from './App.vue'
import router from '@/router'
import '@/styles/index.scss'
import '@/icons'
import axios from 'axios'
import Tinymce from '@/components/tinymce/index.vue'

Vue.component('tinymce', Tinymce)

Vue.config.productionTip = false
Vue.prototype.$axios = axios

houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
14
// add by 捷道源码:引用自 https://github.com/JakHuang/form-generator/tree/dev/src/views/index
sunhongwei's avatar
sunhongwei committed
15 16 17 18 19

new Vue({
  router,
  render: h => h(App)
}).$mount('#app')