https://github.com/wangxiaoyugg/simple-ui
a simple ui use vue3 + typescript
https://github.com/wangxiaoyugg/simple-ui
Last synced: 3 months ago
JSON representation
a simple ui use vue3 + typescript
- Host: GitHub
- URL: https://github.com/wangxiaoyugg/simple-ui
- Owner: WangXiaoyugg
- Created: 2020-08-17T02:19:15.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-16T00:46:09.000Z (over 4 years ago)
- Last Synced: 2025-01-27T16:48:16.732Z (4 months ago)
- Language: Vue
- Size: 248 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple UI
一个用于学习Vue造简单轮子的UI, 使用vue3 + vite + typescript + scss### Usage
1. Clone project code```git
git clone [email protected]:WangXiaoyugg/simple-ui.git
```2. Installation dependence.
```
yarn install
```
Or
```
npm install
```
3. Start local server```
yarn dev
```
Or
```
npm run dev
```4. After the startup is completed, open a browser and visit http://localhost:8080, if you need to change the port, you can edit the dev script of package.json
```json
{
"scripts": {
"dev": "vite --port 8080",
"build": "vite build"
},
}
```## Components
- [x] Button ✅
- [x] Switch ✅
- [x] Dialog ✅
- [x] Tabs/Tab ✅
- [x] Row/Col ✅
- [x] Layout/Header/Aside/Content/Footer ✅
- [x] Popover✅
- [x] Collapse✅
- [x] Cascader✅
- [x] Icon✅
- [x] Pager✅
- [x] Input✅