We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
http://jsfiddle.net/5sH6A/92/
<div v-if="Date.now() < new Date('2020-01-01')">ASDFGASDFGASDFG</div> <div v-if="Date.now() > new Date('2020-01-01')">QWERTQWERTQWERT</div>
Seems like it's converting new Date into newDate and trying to look for both that and Date in the properties list in the current scope
new Date
newDate
Date
The text was updated successfully, but these errors were encountered:
allow use of global Date & new keyword inside expressions (fix #784)
1a36e39
No branches or pull requests
http://jsfiddle.net/5sH6A/92/
Seems like it's converting
new Date
intonewDate
and trying to look for both that andDate
in the properties list in the current scopeThe text was updated successfully, but these errors were encountered: