mart-admin/vue-admin-wonderful-next/src/main.ts

10 lines
247 B
TypeScript
Raw Normal View History

import { createApp } from 'vue'
import App from './App.vue'
import ElementPlus from 'element-plus';
import 'element-plus/lib/theme-chalk/index.css';
import '/@/theme/index.scss';
createApp(App).use(ElementPlus, { size: 'small' }).mount('#app')