release 2.2.4

pull/4499/head 2.2.4
tangjinzhou 2021-08-10 16:25:04 +08:00
parent 0cd3db0bb0
commit 3be5a422f2
3 changed files with 16 additions and 1 deletions

View File

@ -10,6 +10,13 @@
---
## 2.2.4
`2021-08-10`
- 🌟 Support Vue@3.2 [#4490](https://github.com/vueComponent/ant-design-vue/issues/4490)
- 🌟 Automatically hide the horizontal scroll bar of `Table` [#4484](https://github.com/vueComponent/ant-design-vue/issues/4484)
## 2.2.3
`2021-08-07`

View File

@ -10,6 +10,13 @@
---
## 2.2.4
`2021-08-10`
- 🌟 支持 Vue@3.2 [#4490](https://github.com/vueComponent/ant-design-vue/issues/4490)
- 🌟 自动隐藏 `Table` 横向滚动条 [#4484](https://github.com/vueComponent/ant-design-vue/issues/4484)
## 2.2.3
`2021-08-07`

View File

@ -1,4 +1,5 @@
import { BaseTransitionProps, CSSProperties, onBeforeUpdate, Ref } from 'vue';
import type { BaseTransitionProps, CSSProperties, Ref } from 'vue';
import { onBeforeUpdate } from 'vue';
import { getCurrentInstance } from 'vue';
import { defineComponent, nextTick, Transition as T, TransitionGroup as TG } from 'vue';