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