generated from Luthics/vue-elementplus-template
20 lines
499 B
JavaScript
20 lines
499 B
JavaScript
import './assets/main.css'
|
|
|
|
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import Particles from "vue3-particles";
|
|
|
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
|
import { autoAnimatePlugin } from '@formkit/auto-animate/vue'
|
|
|
|
const app = createApp(App)
|
|
app.use(autoAnimatePlugin)
|
|
app.use(router)
|
|
app.use(Particles)
|
|
|
|
app.mount('#app')
|
|
|
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
|
app.component(key, component)
|
|
} |