12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import { createApp } from 'vue'
- import App from './App.vue'
- import router from '@/router'
- // element plus
- import ElementPlus from 'element-plus'
- import 'element-plus/theme-chalk/index.css'
- // 注册全局组件
- import { registerGlobComp } from '@/components/registerGlobComp'
- // 注册全局directive
- import { setupGlobDirectives } from '@/directive'
- import '@/permission'
- // 引入svg注册脚本
- import 'virtual:svg-icons-register'
- // 加载admin-svg icon
- ;(function () {
- const d = document
- // const existIconVersion = [...d.querySelectorAll('.le-icon_svg')].map(v => v.getAttribute('version')).includes(version)
- const existIconVersion = false
- if (!existIconVersion) {
- /** update 最新 iconfont(.css && .js) */
- const origin_prefix = '//at.alicdn.com/t/c/font_4091949_0v9i1byqy04'
- const link = d.createElement('link')
- link.rel = 'stylesheet'
- link.type = 'text/css'
- link.className = 'le-icon_iconfont'
- // link.setAttribute('version', version)
- // link.setAttribute('origin', location.origin)
- link.href = `${origin_prefix}.css`
- d.getElementsByTagName('head')[0].appendChild(link)
- const s = d.createElement('script')
- s.className = 'le-icon_svg'
- s.src = `${origin_prefix}.js`
- // s.setAttribute('version', version)
- // s.setAttribute('origin', location.origin)
- d.getElementsByTagName('head')[0].appendChild(s)
- }
- })()
- // 国际化
- import i18n from '@/lang/index'
- // pinia store
- import pinia from '@/store/createPinia'
- // 自定义样式
- import '@/styles/index.scss'
- import { $log } from '@/utils'
- const app = createApp(App)
- // 注册全局组件
- registerGlobComp(app)
- // 注册全局自定义指令
- setupGlobDirectives(app)
- // 全局方法
- app.config.globalProperties.$log = $log
- // 注册全局组件
- app.use(router).use(ElementPlus).use(i18n).use(pinia).mount('#app')
|