# present-ui **Repository Path**: present-ui/present-ui ## Basic Information - **Project Name**: present-ui - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-03-02 - **Last Updated**: 2021-04-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Present UI Present UI - A Vue.js 3.0 UI library * 💪 Vue 3.0 Composition API * 🔥 Written in TypeScript ## Status: Alpha This project is under development. --- ## Documentation You can find for more details, API, and other docs on [https://present-ui.gitee.io](https://present-ui.gitee.io/) ## Bootstrap project With command ```bash $ yarn bootstrap ``` the project will install all dependencies and run `lerna bootstrap` to initialize the project ## Website preview With command ```bash $ yarn website-dev ``` the project will launch website for you to preview all existing component You can also use this command to start a blank page to debug ```bash $ yarn website-dev:play //source file: ./website/play/index.vue ``` ## Component migration process 1. Convert the item in https://github.com/present-ui/present-ui/projects/1 to an issue 2. Assign yourself to the issue 3. Author your component by generating new component command below 4. Migrate tests and docs 5. Open a new pull request, fill in the component issue link in 1 ## Generate new component With command ```bash $ yarn gen component-name ``` Note the `component-name` must be in `kebab-case`, combining words by replacing each space with a dash. ## Commit template With command ```bash yarn cz ``` Example ``` [TYPE](SCOPE):DESCRIPTION#[ISSUE] # example feat(button):add type 'button' for form usage #1234 ```