# v-element
**Repository Path**: guozhaoxi/v-element
## Basic Information
- **Project Name**: v-element
- **Description**: vue3 + ts 高仿element-plus
- **Primary Language**: JavaScript
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-01-19
- **Last Updated**: 2024-01-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
### 安装
```bash
npm i tangmen-element --save
```
### 开始使用
**全局使用**
```js
// 引入所有组件
import TElement from 'tangmen-element'
// 引入样式
import 'tangmen-element/dist/index.css'
import App from './App.vue'
// 全局使用
createApp(App).use(TElement).mount('#app')
```
```vue
hello world
```
**单个导入**
T Element 提供了基于 ES Module 的开箱即用的 Tree Shaking 功能。
```vue
```