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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
初步排查是通过v-if控制的话,因为组件的表现状态是Modal框。Modal框的显隐是通过v-model来控制的,v-model的值并没有变化,最终导致Modal框不会关闭。
解决方案是在Modal外部加一层div,组件的形态就变成了div中嵌套的modal,这样可以v-if就可以拿到对组件的控制权,而不是Modal的v-model。
The text was updated successfully, but these errors were encountered: