Go to file
Square Coin 1f8fc62d73
Feat/carousel (#151)
* feat: init carousel component

* feat(carousel): init carousel component

* chore: add global dependencies

* chore: use prettier formate code

* feat(carousel): transfer logic - progress 40%

* feat(carousel): migrate logic - progress 50%

* feat(carousel): migrate logic - progress 55%

* feat(carousel): replenish doc

* feat(carousel): add utils

* feat(carousel): finish component logi

* feat(carousel): fix type error

* feat(carousel): test case 80%

* feat(carousel): migrate finish

* feat(carousel): more test cases

* feat(carousel): test case passed

* feat(carousel): fix CI dependencies collides

* feat(carousel): update yarn.lock

* feat(carousel): merge sub component

* feat(carousel): fix lose ctx attribute in buid env

* feat(carousel): finish spec

* feat(carousel): optimize code

* chore: update yarn lock

* feat(carousel): fall back lock file

* chore(carousel): fallback dep

* feat(carousel): update vue dep

* feat(carousel): update spec file

* feat(carousel): use async test

* feat(carousel): revert eslint modify

Co-authored-by: liik <385211478@qq.com>
Co-authored-by: liik <linyunqianpp@126.com>
2020-09-15 10:50:32 +08: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 Feat/carousel (#151) 2020-09-15 10:50:32 +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 Feat/carousel (#151) 2020-09-15 10:50:32 +08:00
typings ### feat: add dialog (#197) 2020-09-09 21:18:08 +08:00
website ### feat: add dialog (#197) 2020-09-09 21:18:08 +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 dialog (#197) 2020-09-09 21:18:08 +08:00
.npmrc fix(dev): update cz & husky 2020-07-24 23:25:03 +08:00
.prettierrc.js Feat/carousel (#151) 2020-09-15 10:50:32 +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 fix: fix eslint && typescript-eslint issue 2020-09-11 10:44:39 +08:00
README.md Update README.md 2020-08-26 14:29:50 +08:00
tsconfig.json ### feat: add dialog (#197) 2020-09-09 21:18:08 +08:00
yarn.lock fix: fix eslint && typescript-eslint issue 2020-09-11 10:44:39 +08: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