We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
使用 createDiscreteApi 创建的 dialog,在调用 dilaog.create 后需要比较久的时间(根据 content 复杂程度而定)才能看到 dialog 显示出来。
因此我需要一个标志 dialog 已显示的回调方法,这样的话,可以在 create 之前显示 loading 效果,在回调里关闭 loading,提高用户体验。
可以在 DialogReactive 里增加一个属性标记 dialog 是否已挂载,这样可以在外部 watch 这个属性;
或者在 exposedDialogEnvProps 增加一个回调函数参数。
The text was updated successfully, but these errors were encountered:
d1f6a77
feat(dialog): DialogReactive supports onAfterEnter prop, closes #…
DialogReactive
onAfterEnter
dd1de2f
…3569
No branches or pull requests
This function solves the problem (这个功能解决的问题)
使用 createDiscreteApi 创建的 dialog,在调用 dilaog.create 后需要比较久的时间(根据 content 复杂程度而定)才能看到 dialog 显示出来。
因此我需要一个标志 dialog 已显示的回调方法,这样的话,可以在 create 之前显示 loading 效果,在回调里关闭 loading,提高用户体验。
Expected API (期望的 API)
可以在 DialogReactive 里增加一个属性标记 dialog 是否已挂载,这样可以在外部 watch 这个属性;
或者在 exposedDialogEnvProps 增加一个回调函数参数。
The text was updated successfully, but these errors were encountered: