Skip to content

Commit ae3e4b1

Browse files
committed
fix(utils): unwrap refs when stringifying values in template
close #12884 close #12888
1 parent de0b97b commit ae3e4b1

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

src/shared/util.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,18 @@ export function toString(val: any): string {
9090
return val == null
9191
? ''
9292
: Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)
93-
? JSON.stringify(val, null, 2)
93+
? JSON.stringify(val, replacer, 2)
9494
: String(val)
9595
}
9696

97+
function replacer(_key: string, val: any): any {
98+
// avoid circular deps from v3
99+
if (val && val.__v_isRef) {
100+
return val.value
101+
}
102+
return val
103+
}
104+
97105
/**
98106
* Convert an input value to a number for persistence.
99107
* If the conversion fails, return original string.
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { toString } from 'core/util/index'
2+
import { ref } from 'v3'
3+
4+
test('should unwrap refs', () => {
5+
expect(
6+
toString({
7+
a: ref(0),
8+
b: { c: ref(1) }
9+
})
10+
).toBe(JSON.stringify({ a: 0, b: { c: 1 } }, null, 2))
11+
})

0 commit comments

Comments
 (0)