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
1.0.0-beta.20
const button = wrapper.find(".close-button");
button should be populated with a wrapper that has an element associated with it.
An element is found and a wrapper is returned but no vnode, element or vm is associated with it.
if (this.constructor.name === 'Wrapper') {
constructor.name is not supported in IE mdn docs
The text was updated successfully, but these errors were encountered:
fix: fix vuejs#762
cf86a40
Successfully merging a pull request may close this issue.
Version
1.0.0-beta.20
Steps to reproduce
const button = wrapper.find(".close-button");
What is expected?
button should be populated with a wrapper that has an element associated with it.
What is actually happening?
An element is found and a wrapper is returned but no vnode, element or vm is associated with it.
if (this.constructor.name === 'Wrapper') {
constructor.name is not supported in IE mdn docs
The text was updated successfully, but these errors were encountered: