mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-02-03 20:24:58 +08:00
20 lines
468 B
JavaScript
20 lines
468 B
JavaScript
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
|
|
|
|
// add by 芋道源码:引用自 https://github.com/JakHuang/form-generator/tree/dev/src/views/index
|
|
|
|
new Vue({
|
|
router,
|
|
render: h => h(App)
|
|
}).$mount('#app')
|