Skip to content

Commit 7116af4

Browse files
committed
fix: set value as domProp for <progress>
fix #6561
1 parent 684cd7d commit 7116af4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/platforms/web/util/attrs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { makeMap } from 'shared/util'
77
export const isReservedAttr = makeMap('style,class')
88

99
// attributes that should be using props for binding
10-
const acceptValue = makeMap('input,textarea,option,select')
10+
const acceptValue = makeMap('input,textarea,option,select,progress')
1111
export const mustUseProp = (tag: string, type: ?string, attr: string): boolean => {
1212
return (
1313
(attr === 'value' && acceptValue(tag)) && type !== 'button' ||

0 commit comments

Comments
 (0)