Vben
2021-02-26 a821d9a3a279f0e6a5b7dbb316725d603ce30f74
提交 | 用户 | age
562189 1 ## 2.0.1 (2021-02-21)
V 2
3 ### ✨ Refactor
4
5 - Refactored login page, new registration page/reset password page/mobile phone login/QR code login
6
7 ### ✨ Features
8
9 - Added the `settingButtonPosition` configuration item for configuring the position of the `settings` button
10 - `modal` can switch the full screen by double-clicking the head
11 - Added `CountDownInput` component
12
13 ### ⚡ Performance Improvements
14
15 - Optimize the editable center style and the width of the drop-down box is too short
16 - The `edit-change` event listener when the table is added and edited
17
18 ### 🐛 Bug Fixes
19
20 - Fix image preview style error
21 - Fix icon style problem
22 - Fix the drop-down echo problem of editable table
23
6da237 24 ## 2.0.0 (2021-02-18)
V 25
26 ## Breaking changes
27
28 - `echarts` is upgraded to 5.0 and introduced on demand (just use `useECharts`).
29
30 ### ✨ Refactor
31
32 - Removed `global.less`, `mixin.less`, `design/helper`, replaced by `windicss`, and need to modify the corresponding styles if they are useful
33
34 ### ✨ Features
35
36 - useModal adds the return value function `redoModalHeight`, which is used to refresh the modal height when the modal is dynamic content
37 - Upgrade husky to 5.0
38 - Added `brotli`|`gzip` compression and related test commands
39 - Re-introduction of `windicss` (same as `tailwind`). Faster in speed
40
41 ### ⚡ Performance Improvements
42
43 - Adjust the return value of the interface to obtain user information in array format
44 - Fix the error-log list as the system route
45
46 ### 🐛 Bug Fixes
47
48 - Fix the issue of upload component maxNumber invalid
49 - Fix package sourcemap error report
50 - Fix code debugger location display error
51 - Fix the issue of mock plugin post request error
52 - Fix some themes color value error
53 - Fix the table in editable row status and press Enter to confirm
54
55 ### 🎫 Chores
56
57 - Documentation update
58 - Upgrade ant-design-vue to `2.0.0`
59 - Upgrade vite to `2.0.0`
60
562e2a 61 ## 2.0.0-rc.18 (2021-02-05)
V 62
63 ### ✨ Features
64
65 - `ApiSelect` adds `numberToString` property, which is used to convert all the value of `number` into `string`
66 - Added theme color switch
67 - Packed image compression
68
69 ### ⚡ Performance Improvements
70
71 When mock is not used, move `mock.js` out of the package file
72
73 ### 🐛 Bug Fixes
74
75 - Fix modal height calculation error
76 - Fix the pop-up menu when the menu is clicked on the tab when the menu is collapsed
77 - Fix the problem that the initial value of form is 0
78 - Fix table wrapping problem
79 - Fix the menu outside link does not jump
80 - Fix the display problem at the top of the menu
81 - Fix the issue of `modifyVars` configuration failure
82
322d7c 83 ## 2.0.0-rc.17 (2020-01-18)
V 84
85 ### ✨ Refactor
86
87 - Added `SimpleMenu` component to replace the left menu component (the top menu is not replaced, the function should be as simple as possible without stuck). Solve the menu stuck problem.
88 - The `ant-design-vue` component is no longer registered globally. In order to better coordinate with the introduction of css on demand. If you need to register globally, you need to add it yourself
89
90 ### ✨ Features
91
92 - `css` import on demand
93
94 ### 🐛 Bug Fixes
95
96 - Fix `TableAction` icon problem
97 - Fix the problem of missing menu folding buttons
98 - Fix menu related issues
99 - Fix moment multilingual issue
100
b803c4 101 ## 2.0.0-rc.16 (2020-01-12)
d7dc09 102
V 103 ### ✨ Refactor
104
105 - Independent component configuration to `/@/settings/componentsSetting`
106 - `colorSetting` and `designSetting` are now merged into `designSetting`
107 - `ant-design-vue` component registration moved to `components/registerComponent`
108 - Remove the `setup` folder
109 - Upgrade to `vite2`
110 - Image preview is changed to `Image` component implementation, temporarily removing functional usage
111
112 ### ✨ Features
113
114 - Added `mixSideTrigger` configuration. Used to configure how to open the mixed mode menu on the left. Optional `hover`, default `click`
115 - Added `mixSideFixed` configuration. Used to fix the left mixed mode menu
116 - Added `height` and `min-height` properties to the modal component
117 - Added `PageWrapper` component. And applied to the sample page
118 - Added tab folding function
119 - Compatible with older browsers
120 - tinymce new image upload
121
122 ### 🐛 Bug Fixes
123
124 - Fix known issues with table column configuration
125 - Restore the `isTreeTable` property of the table
126 - Fix table memory overflow problem
127 - Fix the function of `layout` shrinking and expanding in split mode
128 - Fix modal height calculation error
129 - Fix file upload error
130
799a69 131 ## 2.0.0-rc.15 (2020-12-31)
V 132
133 ### ✨ Table destructive update
134
135 - Refactored editable cells and editable rows. See examples for details. The writing has changed. For editable tables.
136
137 - Form editing supports form validation
138
139 - Added the following configuration in the table column configuration
140
141 ```bash
142 {
143
144   # Whether to display columns by default. Those that are not displayed can be opened in the column configuration
145   defaultHidden?: boolean;
146   # Help text on the right side of the column header
147   helpMessage?: string | string[];
148   # Custom formatting Cell content. Support time/enumeration automatic conversion
149   format?: CellFormat;
150
151   # Editable
152   # Is it an editable cell
153   edit?: boolean;
154   # Is it an editable line
155   editRow?: boolean;
156   # Edit status.
157   editable?: boolean;
158   # Edit component
159   editComponent?: ComponentType;
160   # The parameters of the corresponding component
161   editComponentProps?: Recordable;
162   # Check
163   editRule?: boolean | ((text: string, record: Recordable) => Promise<string>);
164   # Value enumeration conversion
165   editValueMap?: (value: any) => string;
166   # Trigger editing Zhenghang
167   record.onEditRow?: () => void;
168 }
169
170 ```
171
172 ### ✨ Table reconstruction
173
174 - Added `clickToRowSelect` attribute. Used to control whether the clicked row is checked or not
175 - Monitor row click event
176 - Add column drag and drop and column fix function for the table column configuration button.
177 - Added `defaultHidden` attribute to table column configuration. Used to hide by default. You can configure the tick display in the table column
178 - More powerful column configuration
179 - useTable: Support for dynamically changing parameters. You can pass in `Ref` type and `Computed` type for dynamic changes
180 - useTable: Added return function `getForm`. Can be used to manipulate forms in the form Fix known issues in the table
181
182 ### ✨ Features
183
184 - Added `v-ripple` water ripple command
185 - Added the left menu mixed mode
186 - Add an example of markdown embedded in the form
187 - Add an example of a page outside the main frame
188 - `route.meta` added `currentActiveMenu`, `hideTab`, and `hideMenu` parameters to control the display and hide of the crumb-level menu on the detail page.
189 - Added breadcrumb navigation example
190 - form: Added `suffix` attribute to configure suffix content
191 - form: Added remote drop-down `ApiSelect` and examples
192 - form: Add `autoFocusFirstItem` configuration. Used to configure whether to focus on the first input box of the form
193 - useForm: Support for dynamically changing parameters. You can pass in `Ref` type and `Computed` type for dynamic changes
194
195 ### ⚡ Performance Improvements
196
197 - Optimize the scroll bar components of `modal` and `drawer`
198 - table: remove the `isTreeTable` attribute
199 - Import `less` files globally. No need to manually re-introduce the component
200
201 ### 🎫 Chores
202
203 - Upgrade `ant-design-vue` to `2.0.0-rc.7`
204 - Upgrade `vue` to `3.0.5`
205
206 ### 🐛 Bug Fixes
207
208 - Fixed the issue of missing scroll bars in mixed mode
209 - Fix the invalid configuration of environment variables and the logo address problem in history mode
210 - Fix the calculation error of width and height caused by switching page of chart library
211 - Fixed the issue of multi-language configuration `Locale.show` causing the configuration not to take effect
212 - Fix routing type error
213 - Fix the problem of invalid permissions when the menu is split
214 - Iframe loads early when closing multi-tab pages
215 - Fix known issues with `modal` and `drawer`
216 - Fix the problem of mixing mode adaptation in the left menu
217
689425 218 ## 2.0.0-rc.14 (2020-12-15)
V 219
220 ### ✨ Features
221
222 -Remove the left menu search, add the top menu search function -Layout mobile terminal adaptation. Business page is not adapted -axios join the joinTime configuration. Control whether the response includes a timestamp
223
224 ### ⚡ Performance Improvements
225
226 -Import components asynchronously -Optimize the overall structure -Replace the default scroll bar of the menu as a scroll component -Menu performance optimization
227
228 ### 🎫 Chores
229
230 -Return to the top to adjust the style to avoid covering other elements -Upgrade `ant-design-vue` to `2.0.0-rc.5` -Refresh button layout adjustment -`route.meta` removes the `externalLink` attribute
231
232 ### ✨ Refactor
233
234 -`openModal` and `openDrawer` third parameter `openOnSet` is set to true by default
235
236 ### 🐛 Bug Fixes
237
238 -Fixed an issue where multi-level routing cache caused components to render multiple times -Fixed the problem of disappearing after switching the map chart -Fix the issue of successful login and notify disappearing -Modify the names of `VirtualScroll` and `ImportExcel` components as `VScroll` and `ImpExcel` to temporarily solve the memory overflow of components containing keywords in the vue template -Fix axios case problem -Fix button style problem -Fix the problem of menu split mode -Fix the issue of invalid data transmission when using emits in `Modal` and `Drawer` components -Fix the known problems of the menu -Fix the issue of upload component api failure -Fix the problem of invalid menu permission filtering
239
596e70 240 ## 2.0.0-rc.13 (2020-12-10)
V 241
242 ## (Breaking changes) Breaking changes
243
244 -Route reconstruction, the previous format is no longer supported. Change to support the original default structure of vue-router, the specific format can be changed by referring to the example. Realize multi-level route caching, and no longer convert routes to level 2. -Refactor breadcrumbs and use antd's breadcrumbs component. The previous component has been deleted
245
246 ### ✨ Features
247
248 -Restore the default loading of antdv, refactor the `Loading` component, and add `useLoading` and `v-loading` instructions. And add examples -i18n supports vscode `i18n-ally` plugin -New examples of increased routing cache -Packaged code split (experimental) -Extract upload address to global variable, package can be dynamically configured
249
250 ### ✨ Refactor
251
252 -Tree component ref function call to delete `$` -Reconstruction and beautification of the lock screen interface, delete unnecessary background pictures
253
254 ### ⚡ Performance Improvements
255
256 -Page switching loading logic modification. Regardless of whether the loaded page is closed or not, loading will not be displayed when opened again (pages that have been opened are opened again faster, and loading is not required, and the logic of the top progress bar is the same), and it will be restored after refreshing.
257
258 ### 🎫 Chores
259
260 -First screen loading modification -Upgrade `vue` to `3.0.4` -Upgrade `ant-design-vue` to `2.0.0-rc.3` -Re-introduction of `vueuse` -Remove the `afterCloseLoading` attribute in route meta -Documentation update
261
262 ### 🐛 Bug Fixes
263
264 -Fix form i18n error -Fix the inconsistent size of menu icons -Fix the calculation of the top menu width -Fix table tabSetting problem -Repair file upload and delete invalidation -Fix the problem of editing and saving table rows
265
c9e44c 266 ## 2.0.0-rc.12 (2020-11-30)
V 267
268 ## (破坏性更新) Breaking changes
269
270 - The ClickOutSide component import method is changed from `import ClickOutSide from'/@/components/ClickOutSide/index.vue'` to `import {ClickOutSide} from'/@/components/ClickOutSide'`
5db3ce 271 - Button component import method changed from `import Button from'/@/components/Button/index.vue'` to `import {Button} from'/@/components/Button'`
c9e44c 272 - StrengthMeter component import method is changed from `import StrengthMeter from'/@/components/StrengthMeter'` to `import {StrengthMeter} from'/@/components/StrengthMeter'`
V 273 - In addition to the examples, the global internationalization function is added, supporting Chinese and English
274
275 ### ✨ Refactor
276
277 - Refactor the overall layout. Change the code implementation method. Code is more streamlined
278 - Configuration item reconstruction
279 - Remove messageSetting configuration
280 - BasicTitle component `showSpan`=> `span`
281
282 ### ✨ Features
283
284 - The cache can be configured to encrypt or not, and Aes encryption is enabled in the production environment by default
285 - Add tab drag and drop sort
286 - Added LayoutFooter. The default display, can be closed in the configuration
287
288 ### ⚡ Performance Improvements
289
290 - Optimized the problem that the full screen animation of `Modal` component is not smooth
291
292 ### 🐛 Bug Fixes
293
294 - tree: Fix the problem that the text exceeds the operation button
295 - useRedo: Fix the problem of missing parameters when refreshing the page through useRedo
296 - form: Fix the problem that the form verification is first set in the verification and the console error message
297 - `modal`&`drawer` fix the problem of component passing array parameters
298 - form: fix `updateSchema` does not take effect when the value contains `[]`
299 - table: Fix the display problem of the table `TableAction` icon
300 - table: fix table column settings not displayed by `setColumns` setting
301
302 ### 🎫 Chores
303
304 - Update antdv to `2.0.0-rc.2`
305 - Update vue to `3.0.3`
306 - Update vite to `1.0.0.rc13`
307 - Temporarily delete `@vueuse/core`. After it is stable, it will be integrated. It is currently not stable.
308
ea24df 309 ## 2.0.0-rc.11 (2020-11-18)
V 310
311 ### ✨ Features
312
313 - Added base64 file stream download
314 - Optimize upload components and examples
315 - New editable row example
316 - Add a personal page
317 - New form page
318 - Add details page
319 - Integrate upload components into form by default
320
321 ### 🎫 Chores
322
323 - Update antdv to `2.0.0-rc.1` (temporarily restore to beta15, rc1 menu freezes too seriously.)
324 - Add some notes
325
326 ### ✨ Refactor
327
328 - Removed `receiveDrawerDataRef` and `transferDrawerData` properties of `useModal` and `useDrawer`
329 - `openModal` and `openDrawer` corresponding to `useModal` and `useDrawer` extend the third parameter. Used to open the trigger callback again
330
331 ### 🐛 Bug Fixes
332
333 - Repair form inputNumber verification error
334 - Fix the error of setting the default value of the form
335 - Fix the problem of occupying position when the menu collapse button is hidden
336 - Fix the form baseColProps does not take effect
337
3cf798 338 ## 2.0.0-rc.10 (2020-11-13)
V 339
340 ### ✨ Refactor
341
342 - Refactor hook, introduce `@vueuse`, delete existing `hook`, optimize existing hook
343 - ʻUseEvent` renamed ->ʻuseEventListener`
344 - Delete the four types `SelectOptGroup`, `SelectOption`, `Transfer`, and `Radio` from the form `ComponentType`. Modify the `RadioButtonGroup` component
345
346 ### ✨ Features
347
348 - `componentsProps` support function type of form item
349 - Added tag display to the menu, supporting 4 types of colors and dot display
350 - New menu and top bar color selection color matching
351 - Add sample result page
352 - New file download example
353
354 ### ⚡ Wip
355
356 - Upload components (not completed, testing...)
357
358 ### ⚡ Performance Improvements
359
360 - Optimize settingDrawer code
361 - Optimize the switching speed of multiple tabs
362 - Add form customization and dynamic capabilities
363
364 ### 🐛 Bug Fixes
365
366 - Fixed multiple rich text editors showing only one
367 - Fixed the problem of not redirecting to the original page after logging in again after expiration
368 - Fix window system dynamic introduction error
369 - Fix page type error
370 - Fixed an error when the form switch and checkBox were used separately
371
03bbdd 372 ## 2.0.0-rc.9 (2020-11-9)
V 373
374 ### ✨ Features
375
376 - Menu trigger can select location
377 - Add an example of rich text embedded form
378 - Added `required` attribute to form component schema. Simplified configuration
379 - The second parameter of openModal and openDrawer can be passed internally instead of `transferModalData`
380 - Routes with parameters can be cached
381
382 ### ✨ Refactor
383
384 - Refactored the logic of the menu generated by the background
385 - Route Module structural transformation
1db72c 386
V 387 ### ⚡ Performance Improvements
388
389 - Menu performance continues to be optimized and smoother
390 - Optimize lazy loading components and examples
03bbdd 391 - layout style fine-tuning
1db72c 392
V 393 ### 🎫 Chores
394
395 - Delete menu background image
03bbdd 396 - Update the version of ʻant-design-vue`to`beta15`
1db72c 397 - Update `vite` version to `rc.9`
V 398 - Exception page adjustment
399 - `BasicTitle` Color blocks are not displayed by default
400
401 ### 🐛 Bug Fixes
402
403 - Fix table type problem after upgrade
404 - Fix the problem that the last submenu continues to be displayed when the menu is divided and there is no data in the left menu
405 - Fix the issue of ʻuseMessage` type
406 - Fix the problem that the form item setting `disabled` does not take effect
407 - Fix that ʻuseECharts`can't adapt when`resize`, and an error is reported
408 - Fix that `resize` is not deleted after ʻuseWatermark` is cleared
409 - Fix form verification problem
03bbdd 410 - Fixed the problem that the multi-level header configuration does not take effect
1db72c 411
d37806 412 ## 2.0.0-rc.8 (2020-11-2)
V 413
414 ### ✨ Features
415
416 - Global loading add text
417 - Right-click menu supports multiple levels
418
419 ### 🎫 Chores
420
421 - Login cache changed from sessionStorage to LocalStorage
422
423 ### ⚡ Performance Improvements
424
425 - Update ʻant-design-vue`to`beta.12`
426 - Layout interface layout style adjustment
427 - Optimize lazy loading components
428 - Optimize table rendering performance
429 - Add animation to form folding search icon
430 - routeModule can ignore the layout configuration. Convenient to configure the first-level menu
431
432 ### 🐛 Bug Fixes
433
434 - Fix table type error
435 - Fix bug in mock paging tool
436 - Fix the folding problem of the search form when the table is opened
437 - Fix the problem of fixed column style when the table size is samll
438 - Fixed the error report when closing multiple tabs
439 - Fix message type error
440
3466d6 441 ## 2.0.0-rc.7 (2020-10-31)
V 442
443 ### ✨ Features
444
445 - The form component now supports directly passing in the model to directly perform the set operation, please refer to **Component -> Popup Extension -> Open Popup and Pass Data**
446
447 - The useModalInner of modal now supports the incoming callback function to receive the value passed in from the external `transferModalData`
448
449   - Used to handle the setting values ​​of components such as forms when the pop-up window is opened. Refer to **Component -> Popup Extension -> Open Popup and Pass Data**
450   - The value of `receiveModalDataRef` is temporarily reserved. Use as little as possible. It may be deleted later.
451
452 - The drawer’s useDrawerInner now supports the incoming callback function to receive the value passed in from the external `transferModalData`,,
453   - Used to handle the setting values ​​of components such as forms for opening the drawer Refer to **Component->Drawer Extension->Open the drawer and transfer data**
454   - The value of `receiveModalDataRef` is temporarily reserved. Use as little as possible. It may be deleted later.
455
456 ### ✨ Refactor
457
458 - Form code optimization and reconstruction
459
460 ### ⚡ Performance Improvements
461
462 - Modal slot can be overwritten
463 - Optimize table embedding height calculation problem
464
465 ### 🎫 Chores
466
467 - Add some notes
468 - pwa icon supplement
469 - Type adjustment
470 - Upgrade ʻant-design-vue`to`beta.11`, and modify the known issues brought about, and some issues will be resolved after discovery
471
472 ### 🐛 Bug Fixes
473
474 - Fix the timeout error of local proxy post interface to https address
475 - Fix modal full screen height calculation problem when footer is not displayed
476 - Fix the error that the verification information is not deleted when the form is reset
477 - Fix the style problem of the split mode of the top menu
478 - Fix the invalidation of table expansion icon animation
479
d51cfe 480 ## 2.0.0-rc.6 (2020-10-28)
V 481
482 ### ✨ Features
483
484 - Added `pwa` function, which can be turned on in `.env.production`
485 - Button component extends `preIcon` and `postIcon` attributes to add icons before and after the text
486 - Restore the breadcrumb display icon function
487
488 ### 🎫 Chores
489
490 - Upgrade vite version to `v1.0.0.rc8`
491 - vite.config.ts internal plugins extraction
492 - Build directory structure adjustment
493 - Dependency update
494 - Documentation update
495 - Modify the default route switching animation
496
497 ### ⚡ Performance Improvements
498
499 - `setTitle` logic adjustment
500 - The sessionStorage and LocalStorage cache settings used by the system expire in `7` days by default
501
502 ### ✨ Refactor
503
504 - Separate `vite-plugin-html` and modify the logic of inserting html
505
506 ### 🐛 Bug Fixes
507
508 - Fix the warning problem of multiple registration components during hot update
509 - Fix the login tab page appears after login
510 - Fix the problem of routing switch parameter disappearance
511 - Fix the useMessage icon style problem
512
1d47d8 513 ## # 2.0.0-rc.5 (2020-10-26)
V 514
515 ### ✨ Features
516
517 - Update component documentation
518 - Breadcrumbs support display icon
519 - Added tinymce rich text component
520 - Add submitOnReset to the form to control whether to re-initiate the request when reset
521 - Added `sortFn` to the table to support custom sorting
522 - Added animation components and examples
523 - Added lazy loading/delay loading components and examples
524
525 ### ✨ Refactor
526
527 - The detailType of the Drawer component is changed to isDetail
528
529 ### 🎫 Chores
530
531 - Remove the optional chain syntax in the code
532 - Form reset logic modification
533 - Turn off multi-tab page tabs animation
534 - Upgrade vite version to `v1.0.0.rc6`
535 - Delete Chinese path warning. rc6 has been fixed
536
537 ### 🐛 Bug Fixes
538
539 - Fix the automatic height and display footer display problems of drawer components
540 - Reset to default value after repairing form query
541 - Fix the problem of displaying the collapsed menu when there are no child nodes
542 - Fix the problem of breadcrumb display style
543 - Fixed the problem of multiple open drag and drop failure when destroyOnClose=true in modal
544 - Fixed multiple action columns in the table
545
5f39be 546 # 2.0.0-rc.4 (2020-10-21)
V 547
548 ### ✨ Features
549
550 - New configuration toolbar for tables
551 - New message notification module
552
553 ### 🎫 Chores
554
555 - The table does not show borders by default
556 - Dependency update
557 - Update vue to `v3.0.2`
558 - Interface style fine-tuning
559
560 ### ⚡ Performance Improvements
561
562 - Optimize the size of the first screen
563 - Optimize the TableAction component
564 - Reduce the folding width of the menu
565
566 ### 🐛 Bug Fixes
567
568 - Fix the problem of the menu name when the first level menu is folded
569 - Fix the problem that the preview command is not packaged
570 - Fix the problem that the form actionColOptions parameter does not take effect
571 - Fix the problem that the loading does not take effect when refreshing the form
572
8fd199 573 # 2.0.0-rc.3 (2020-10-19)
V 574
575 ### ✨ Features
576
577 - Added excel component and excel/xml/csv/html export example
578 - Added excel import example
579 - Added global error handling
580 - Added markdown components and examples
581 - The menu name can be displayed when adding a new folding menu
582
583 ### Docs
584
585 - add project doc
586
587 ### 🎫 Chores
588
589 - update deps
590
591 ### 🐛 Bug Fixes
592
593 - Fix the adaptive problem of the top menu
594 - Fix window system packaging error
595
c346bb 596 # 2.0.0-rc.2 (2020-10-17)
V 597
598 ### ✨ Features
599
600 - Package can be configured to output `gizp`
601 - Package can be configured to delete `console`
602 - Routes and menus do not need to be imported manually, they are imported automatically
603
604 ### 🎫 Chores
605
606 - Upgrade vue to `3.0.1`
607 - Change `vite` version to daily build version
608
609 ### 🐛 Bug Fixes
610
611 - Fix menu error
612 - Fix the problem of table adaptive height
613 - Fix the issue of error reporting when executing script in `window system`
614 - Fix the problem of folding components
615
616 ### ⚡ Performance Improvements
617
618 - Remove menu to minimize background
619 - Prevent page refresh and re-render menu
620 - Some other details are optimized
621
9abba7 622 # 2.0.0-rc.1 (2020-10-14)
be8e14 623
V 624 ### ✨ Features
625
626 - Add a tab with parameters
627
628 ### ⚡ Performance Improvements
629
630 - Optimized menu folding
631 - Page details optimization
632 - Compress html after packaging
633 - Functional reconstruction of preview components and right-click menu
634 - The preview component operation column is centered
635
636 ### 🎫 Chores
637
638 - update deps
639 - Added `README.en-US.md`
640 - Added `CHANGELOG.en-US.md`
641
642 ### 🐛 Bug Fixes
643
644 - Fix page refresh and jump to landing page
645
7c7f35 646 # 2.0.0-beta.7 (2020-10-12)
V 647
648 ### ⚡ Performance Improvements
649
650 - The existing tab switching no longer displays animation and progress bar
651
652 ### ✨ Features
653
654 - Added `CountTo` component and sample demo
655 - Added `closeMessageOnSwitch` and `removeAllHttpPending` to the project configuration file
656 - The production environment has a separate configuration file for dynamic configuration project configuration
657 - Added ʻuseEcharts` and ʻuseApexChart` to facilitate the use of charts, and added related demos
658 - New workbench interface
659 - New analysis page interface
660
661 ### 🎫 Chores
662
663 - Update dependencies
664
665 ### 🐛 Bug Fixes
666
667 - Fix routing switch, tab inactive problem
668
669 # 2.0.0-beta.6 (2020-10-11)
670
671 ### 💄 Styles
672
673 - Menu style adjustment
674
675 ### 🐛 Bug Fixes
676
677 - Fix the problem that editable forms cannot be entered
678 - Repair packaging errors, no proxy is required in the production environment
679
680 ### ⚡ Performance Improvements
681
682 - Optimize the switching speed of multi-tab pages
683 - First screen loading animation
684
685 # 2.0.0-beta.5 (2020-10-10)
686
687 ### ♻ Code Refactoring
688
689 - Delete `tailwind css`
690
691 ### ⚡ Performance Improvements
692
693 - Optimize page switching speed
694
695 ### 🎫 Chores
696
697 - Add `.vscode` and `.github` configuration
698 - Change menu icon
699 - Added `.env` configuration file
700 - Update readme.md
701
702 ### 🐛 Bug Fixes
703
704 - Fix the failure of `Tree` component check event
705
706 # 2.0.0-beta.4 (2020-10-08)
707
708 ### 🎫 Chores
709
710 - Remove redundant dependencies
711
712 ### 🐛 Bug Fixes
713
714 - Fix page refresh blank
715 - Fix the invalid table style in the production environment
716
717 # 2.0.0-beta.3 (2020-10-07)
718
719 ### ✨ Features
720
721 - Added ʻopenNProgress` to the project configuration file to control whether to open the top control bar
722 - Add `Table` component and demo
723
724 ### 🎫 Chores
725
726 - Add ` github workflows`
727
728 # 2.0.0-beta.2 (2020-10-07)
729
730 ### ✨ Features
731
732 - Added image preview component
733
734 ### 🔧 Continuous Integration
735
736 - Add githubAction script
737
738 # 2.0.0-beta.1(2020-09-30)
739
740 ### 🎫 Chores
741
742 - Migrate some code from 1.0
743 - Add README.md description file
744
745 ### 🐛 Bug Fixes
746
747 - Fix the problem of form, animation and packaging failure