Go to file
2020-09-08 07:14:28 +00:00
.github ci: fix dependabot automerge 2020-09-07 22:25:20 +08:00
.storybook Feat/scss (#212) 2020-08-28 11:09:05 +08:00
packages fix(test-utils): revert image patch 2020-09-07 20:50:44 +08:00
public update 2020-07-21 18:18:44 +08:00
scripts chore: upgrade all dependencies 2020-08-31 09:43:07 +08:00
src/style feat: add Layout component (#50) 2020-07-31 18:20:03 +08:00
typings fix(project): fix global types 2020-08-25 23:28:47 +08:00
website chore: compiled failed(#230) (#231) 2020-08-31 15:18:02 +08:00
.editorconfig feat/add-storybook 2020-07-24 19:20:37 +08:00
.eslintrc.js chore(project): modify some lint rules 2020-08-19 23:15:51 +08:00
.gitattributes chore: update type 2020-08-28 14:54:23 +08:00
.gitignore feat: add website (#135) 2020-08-13 15:18:26 +08:00
.npmrc fix(dev): update cz & husky 2020-07-24 23:25:03 +08:00
CHANGELOG.en-US.md feat: add website (#135) 2020-08-13 15:18:26 +08:00
CHANGELOG.es.md feat: add website (#135) 2020-08-13 15:18:26 +08:00
CHANGELOG.fr-FR.md feat: add website (#135) 2020-08-13 15:18:26 +08:00
CHANGELOG.zh-CN.md feat: add website (#135) 2020-08-13 15:18:26 +08:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2020-08-19 10:19:38 +08:00
commitlint.config.js chore(project): modify some lint rules 2020-08-19 23:15:51 +08:00
jest.config.js fix: fix bundle issue 2020-08-14 09:54:27 +08:00
lerna.json feat: add lerna basic config 2020-07-22 00:35:23 +08:00
LICENSE Create LICENSE 2020-08-18 13:53:45 +08:00
package.json build(deps-dev): bump @swc-node/jest from 0.2.0 to 0.3.4 2020-09-07 14:36:21 +00:00
README.md Update README.md 2020-08-26 14:29:50 +08:00
tsconfig.json chore(project): modify some lint rules 2020-08-19 23:15:51 +08:00
yarn.lock build(deps-dev): bump eslint from 7.7.0 to 7.8.1 2020-09-08 07:14:28 +00:00

Element Plus - A Vue.js 3.0 UI library

  • 💪 Vue 3.0 Composition API
  • 🔥 Written in TypeScript

This project is still under heavy development. Feel free to join us and make your first pull request.


Join our Discord to start communicating with everybody Discord

Bootstrap project

With command

$ yarn bootstrap

the project will install all dependencies and run lerna bootstrap to initialize the project

Storybook preview

With command

$ yarn storybook

the project will launch @storybook client for you to preview all existing component

Component migration process

  1. Convert the item in https://github.com/element-plus/element-plus/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

$ 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

yarn cz

Example

[TYPE](SCOPE):DESCRIPTION#[ISSUE]
# example feat(button):add type 'button' for form usage #1234