34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import { createApp } from 'vue'
|
|
import pinia from '/@/stores/index'
|
|
import App from '/@/App.vue'
|
|
import router from '/@/router'
|
|
import { directive } from '/@/directive/index'
|
|
import { i18n } from '/@/i18n/index'
|
|
import other from '/@/utils/other'
|
|
|
|
import ElementPlus from 'element-plus'
|
|
import 'virtual:svg-icons-register'
|
|
import '/@/theme/index.scss'
|
|
import VueGridLayout from 'vue-grid-layout'
|
|
import globalProperties from '/@/globalProperties'
|
|
import vue3TreeOrg from 'vue3-tree-org'
|
|
import 'vue3-tree-org/lib/vue3-tree-org.css'
|
|
import MyLayout from '/@/components/my-layout/index.vue'
|
|
import MySearch from '/@/components/my-search/index.vue'
|
|
import MySelect from '/@/components/my-select/index.vue'
|
|
|
|
// 打印取消自动连接
|
|
import { disAutoConnect } from 'vue-plugin-hiprint'
|
|
disAutoConnect()
|
|
|
|
const app = createApp(App)
|
|
|
|
directive(app)
|
|
other.elSvg(app)
|
|
|
|
app.component('MyLayout', MyLayout)
|
|
app.component('MySearch', MySearch)
|
|
app.component('MySelect', MySelect)
|
|
app.use(vue3TreeOrg)
|
|
app.use(pinia).use(router).use(ElementPlus).use(i18n).use(VueGridLayout).use(globalProperties).mount('#app')
|