Commit d37806900e41fbb8ea8591bc13bb6a572b05587b
1 parent
da863d3d
chore: bump 2.0.0-rc.8
Showing
4 changed files
with
38 additions
and
13 deletions
CHANGELOG.en_US.md
1 | +## 2.0.0-rc.8 (2020-11-2) | |
2 | + | |
3 | +### ✨ Features | |
4 | + | |
5 | +- Global loading add text | |
6 | +- Right-click menu supports multiple levels | |
7 | + | |
8 | +### 🎫 Chores | |
9 | + | |
10 | +- Login cache changed from sessionStorage to LocalStorage | |
11 | + | |
12 | +### ⚡ Performance Improvements | |
13 | + | |
14 | +- Update ʻant-design-vue`to`beta.12` | |
15 | +- Layout interface layout style adjustment | |
16 | +- Optimize lazy loading components | |
17 | +- Optimize table rendering performance | |
18 | +- Add animation to form folding search icon | |
19 | +- routeModule can ignore the layout configuration. Convenient to configure the first-level menu | |
20 | + | |
21 | +### 🐛 Bug Fixes | |
22 | + | |
23 | +- Fix table type error | |
24 | +- Fix bug in mock paging tool | |
25 | +- Fix the folding problem of the search form when the table is opened | |
26 | +- Fix the problem of fixed column style when the table size is samll | |
27 | +- Fixed the error report when closing multiple tabs | |
28 | +- Fix message type error | |
29 | + | |
1 | 30 | ## 2.0.0-rc.7 (2020-10-31) |
2 | 31 | |
3 | 32 | ### ✨ Features | ... | ... |
CHANGELOG.zh_CN.md
README.en-US.md
1 | 1 | <p align="center"> |
2 | 2 | <a href="https://github.com/anncwb/vue-vben-admin" target="_blank"> |
3 | - <img alt="VbenAdmin Logo" width="200" src="./.github/res/imgs/logo.png"> | |
3 | + <img alt="VbenAdmin Logo" width="200" src="/anncwb/vue-vben-admin/raw/main/.github/res/imgs/logo.png"> | |
4 | 4 | </a> |
5 | 5 | </p> |
6 | 6 | <h2 align="center">VUE VBEN ADMIN2.0</h2> |
... | ... | @@ -35,11 +35,7 @@ |
35 | 35 | |
36 | 36 | ## Introduction |
37 | 37 | |
38 | -This branch is a 2.0 new branch which use vue3 to develop. | |
39 | - | |
40 | -You can also switch to 1.0 branch which use `vue2.6` , `vue-composition-api` and `vue-cli` to develop. | |
41 | - | |
42 | -The project is based on the vue3 style background management system implemented by `ant-design-vue`,`typescript`,`vue3.0`,`vite`,`tsx`. | |
38 | +The project is based on the vue3 style background management system implemented by ʻant-design-vue`, `typescript`,`vue3.0`,`vite`,`tsx`, | |
43 | 39 | |
44 | 40 | ## GitHub |
45 | 41 | |
... | ... | @@ -110,17 +106,17 @@ The documentation for 2.0 hasn't started yet, it will be provided later. |
110 | 106 | |
111 | 107 | ## Install |
112 | 108 | |
113 | -```js | |
114 | -// Make git case sensitive to file names | |
109 | +```bash | |
110 | +# Make git case sensitive to file names | |
115 | 111 | git config core.ignorecase false |
116 | 112 | |
117 | -// Pull code of the project | |
113 | +# Pull code of the project | |
118 | 114 | git clone https://github.com/anncwb/vue-vben-admin.git vue-vben-admin-2.0 |
119 | 115 | |
120 | 116 | cd vue-vben-admin-2.0 |
121 | 117 | |
122 | -// If you use other package management tool, you can install it by yourself | |
123 | -// if you hasn't install yarn, please run: npm install -g yarn | |
118 | +# If you use other package management tool, you can install it by yourself | |
119 | +# if you hasn't install yarn, please run: npm install -g yarn | |
124 | 120 | yarn install |
125 | 121 | |
126 | 122 | ``` | ... | ... |