10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
|
|
import ElementPlus from 'element-plus';
|
|
import 'element-plus/lib/theme-chalk/index.css';
|
|
import '/@/style/index.css';
|
|
|
|
createApp(App).use(ElementPlus).mount('#app')
|
|
|