https://github.com/zonemeen/eminent-ui
🌈 一个基于 vue3 + vite 开发构建的 UI 组件库(持续更新中)
https://github.com/zonemeen/eminent-ui
Last synced: 7 months ago
JSON representation
🌈 一个基于 vue3 + vite 开发构建的 UI 组件库(持续更新中)
- Host: GitHub
- URL: https://github.com/zonemeen/eminent-ui
- Owner: zonemeen
- License: other
- Created: 2020-12-12T12:55:27.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-08-16T12:24:58.000Z (about 3 years ago)
- Last Synced: 2025-01-23T19:49:45.228Z (9 months ago)
- Language: Vue
- Homepage: https://miqilin21.gitee.io/eminent-ui
- Size: 462 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Eminent UI
一个基于 vue3 + vite 开构建的 UI 组件库。
[](https://github.com/miqilin21/eminent-ui/blob/main/LICENSE)
## ✨ 特别说明
这款组件库其实是我为了学习`vue3`以及巩固自己知识而写。
全程亲手编写,尽量不采用第三方库,包括你看到的官网也几乎都是我自己写的。
此库纯属个人练手项目,未经过系统严格的测试,所以**强烈不建议你将此 UI 库用于生产环境!**
## 📦 安装
```
npm install eminent-ui
```或
```
yarn add eminent-ui
```## 🔨 开始使用
请先安装本组件库。
然后在你的代码中写入下面的代码:
```
import 'eminent-ui/dist/lib/eminent.css';
import {Button, Tabs, Tab, Switch, Dialog, openDialog, Tag, Progress, CheckBox} from "eminent-ui"
```就可以使用我提供的组件了。
代码示例:
```vue
按钮
import { Button } from "eminent-ui";
export default {
components: {
Button,
},
};```