suerprisePlus
2024-09-24 0d50fe17a7086791275bc21d70adc79c5497c9d2
1
2
3
4
5
6
7
8
9
10
11
12
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')