mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-06 10:38:31 +08:00
35c90180d1
* refactor(components): use css var to set menu global style * fix(components): remove useless value & change camelCase & test file * test: comment code that can not test final style * test: fix unused-vars lint * feat: add computed for useMenuCssVar * test(components): revert test file * fix(components): use computed value
20 lines
253 B
Markdown
20 lines
253 B
Markdown
# DEV FAQ
|
|
|
|
Here are the problems that are easy to encounter in development.
|
|
|
|
## If you encounter dependency related issues
|
|
|
|
```bash
|
|
yarn bootstrap
|
|
```
|
|
|
|
## Test suite failed to run (jest)
|
|
|
|
Can not run `yarn test xxx`
|
|
|
|
```bash
|
|
rm -rf dist
|
|
```
|
|
|
|
Try again.
|