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
2.7.0
codepen.io
data() { return { test: NaN } }
created(){ this.test = 10 console.log(this.test) // output:NaN }
10
NaN
The text was updated successfully, but these errors were encountered:
maybe the Object.is polyfill function cause this case?
Sorry, something went wrong.
ff5acb1
Successfully merging a pull request may close this issue.
Version
2.7.0
Reproduction link
codepen.io
Steps to reproduce
data() {
return {
test: NaN
}
}
created(){
this.test = 10
console.log(this.test) // output:NaN
}
What is expected?
10
What is actually happening?
NaN
The text was updated successfully, but these errors were encountered: