# element-enhance
**Repository Path**: ZhgPhh/element-enhance
## Basic Information
- **Project Name**: element-enhance
- **Description**: 🎉 Element Enhance 让 Element Plus 更简单, 更通用, 更流行
- **Primary Language**: TypeScript
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 15
- **Created**: 2021-06-15
- **Last Updated**: 2021-06-25
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
a component library for Vue 3 base on element-plus
安装
```
npm install element-plus --save
npm install element-enhance --save
```
引入
```js
import { createApp } from 'vue'
import App from './App.vue'
import ElementEnhance from 'element-enhance'
import 'element-enhance/lib/style.css'
import ElementPlus from 'element-plus'
import 'element-plus/lib/theme-chalk/index.css'
const app = createApp(App)
app.use(ElementEnhance)
app.use(ElementPlus)
app.mount('#app')
```
使用
```vue