We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 684cd7d commit 7116af4Copy full SHA for 7116af4
src/platforms/web/util/attrs.js
@@ -7,7 +7,7 @@ import { makeMap } from 'shared/util'
7
export const isReservedAttr = makeMap('style,class')
8
9
// attributes that should be using props for binding
10
-const acceptValue = makeMap('input,textarea,option,select')
+const acceptValue = makeMap('input,textarea,option,select,progress')
11
export const mustUseProp = (tag: string, type: ?string, attr: string): boolean => {
12
return (
13
(attr === 'value' && acceptValue(tag)) && type !== 'button' ||
0 commit comments