9 lines
264 B
TypeScript
9 lines
264 B
TypeScript
import { createApp } from 'vue'
|
|
import './style.css'
|
|
import App from './App.vue'
|
|
import ElementPlus from 'element-plus'
|
|
import { createPinia } from 'pinia'
|
|
import router from './router'
|
|
|
|
createApp(App).use(createPinia()).use(router).use(ElementPlus).mount('#app')
|