mirror of
https://github.com/earthjasonlin/zzz-signal-search-export.git
synced 2025-08-04 11:10:09 +08:00
12 lines
283 B
JavaScript
12 lines
283 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import './index.css'
|
|
import ElementPlus from 'element-plus'
|
|
import 'element-plus/dist/index.css'
|
|
import { IconInstaller } from './utils'
|
|
|
|
const app = createApp(App)
|
|
app.use(ElementPlus)
|
|
IconInstaller(app)
|
|
app.mount('#app')
|