-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Empty value for property causes template compilation to fail #3969
New issue
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
Comments
Hi, thanks for filling this issue.
You're not setting an empty string with
You only need to give it an empty string |
Is there not a better way for Vue to deal with this? Or possible provide some better kind of error handling instead of dumping half the DOM inside the console when this happens? |
@fnlctrl |
Vue.js version
2.0.3
Reproduction Link
https://jsfiddle.net/jt3hjuwg/
Steps to reproduce
Bind a prop that has an has an empty string as a value. If you were to provide a JSON object or the string
null
it would work, but if you use an empty string the template will fail to compile.I'm not sure if this is expected behaviour in Vue 2 (it used to work in Vue 1). However, it feels a little counter-intuitive. For example, if I am providing content as a prop server-side I need to check if it exists and return the literal string
null
otherwise.What is Expected?
The application still renders but the property becomes an empty string or null.
What is actually happening?
A warning is shown in the console and the application fails to render.
The text was updated successfully, but these errors were encountered: