You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When elements require a value property, how is this best done? I keep getting the error message whenever I go near a value property.
Example
render() {
return (
<input value="0" />
)
}
Error:
TypeError: file.js: acceptValue.includes is not a function
at module.exports (node_modules\babel-plugin-transform-vue-jsx\lib\must-use-prop.js:4:38)
at node_modules\babel-plugin-transform-vue-jsx\index.js:100:19
at Array.forEach (native)
at JSXOpeningElement (node_modules\babel-plugin-transform-vue-jsx\index.js:91:24)
I can fix this by using domPropsValue but is this the correct/only solution? If so, this should be added to the documentation!
When elements require a
value
property, how is this best done? I keep getting the error message whenever I go near avalue
property.Example
Error:
I can fix this by using
domPropsValue
but is this the correct/only solution? If so, this should be added to the documentation!The text was updated successfully, but these errors were encountered: