import { createApp } from 'vue'
|
import './style.css'
|
import App from './App.vue'
|
import ElementPlus from 'element-plus'
|
import 'element-plus/dist/index.css'
|
|
import { createPinia } from 'pinia'
|
const pinia = createPinia()
|
const app = createApp(App);
|
app.use(ElementPlus)
|
app.use(pinia)
|
app.mount('#app')
|