Skip to content

Commit c4f6eb6

Browse files
committed
fix: process.nextTick #4737
1 parent cc0a53c commit c4f6eb6

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

CHANGELOG.en-US.md

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010

1111
---
1212

13+
## 3.0.0-alpha.2
14+
15+
`2021-10-08`
16+
17+
- 🐞 Fix the issue of referencing process.nextTick [#4737](https://github.com/vueComponent/ant-design-vue/issues/4737)
18+
1319
## 3.0.0-alpha.1
1420

1521
`2021-10-07`

CHANGELOG.zh-CN.md

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010

1111
---
1212

13+
## 3.0.0-alpha.2
14+
15+
`2021-10-08`
16+
17+
- 🐞 修复引用 process.nextTick 问题 [#4737](https://github.com/vueComponent/ant-design-vue/issues/4737)
18+
1319
## 3.0.0-alpha.1
1420

1521
`2021-10-07`

components/_util/PortalWrapper.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ import {
1010
onBeforeUnmount,
1111
onUpdated,
1212
getCurrentInstance,
13+
nextTick,
1314
} from 'vue';
1415
import canUseDom from './canUseDom';
1516
import ScrollLocker from '../vc-util/Dom/scrollLocker';
1617
import wrapperRaf from './raf';
17-
import { nextTick } from 'process';
1818

1919
let openCount = 0;
2020
const supportDom = canUseDom();

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-design-vue",
3-
"version": "3.0.0-alpha.1",
3+
"version": "3.0.0-alpha.2",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [

0 commit comments

Comments
 (0)