Skip to content

Commit 4fd2ce8

Browse files
dakyyx990803
authored andcommitted
fix: allow an object's Symbols to be observed (#6704)
Attempting to parseFloat on a Symbol throws the error `Cannot convert a Symbol value to a string`. A Symbol can be cast to a string using `.toString()` or `String()` though, so explicitly casting before parsing resolves the issue, allowing `Vue.set` to be called on Symbols.
1 parent 4361a2b commit 4fd2ce8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/util.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function isRegExp (v: any): boolean {
5656
* Check if val is a valid array index.
5757
*/
5858
export function isValidArrayIndex (val: any): boolean {
59-
const n = parseFloat(val)
59+
const n = parseFloat(String(val))
6060
return n >= 0 && Math.floor(n) === n && isFinite(val)
6161
}
6262

0 commit comments

Comments
 (0)