11 lines
305 B
TypeScript
11 lines
305 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).use(router).use(createPinia()).mount('#app');
|