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