mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-02-04 04:34:59 +08:00
18 lines
364 B
JavaScript
18 lines
364 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
|
||
|
|
||
|
new Vue({
|
||
|
router,
|
||
|
render: h => h(App)
|
||
|
}).$mount('#app')
|