Skip to content

Commit 0e4e45e

Browse files
mathieutuyyx990803
authored andcommitted
feat: support custom toString() in text interpolation and v-html (#8217)
close #8093
1 parent 1933ee8 commit 0e4e45e

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

src/shared/util.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export function isPromise (val: any): boolean {
8585
export function toString (val: any): string {
8686
return val == null
8787
? ''
88-
: typeof val === 'object'
88+
: Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)
8989
? JSON.stringify(val, null, 2)
9090
: String(val)
9191
}

test/unit/features/directives/html.spec.js

+6
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ describe('Directive v-html', () => {
4444
vm.a = {}
4545
}).then(() => {
4646
expect(vm.$el.innerHTML).toBe('{}')
47+
vm.a = { toString () { return 'foo' } }
48+
}).then(() => {
49+
expect(vm.$el.innerHTML).toBe('foo')
50+
vm.a = { toJSON () { return { foo: 'bar' } } }
51+
}).then(() => {
52+
expect(vm.$el.innerHTML).toBe('{\n "foo": "bar"\n}')
4753
vm.a = 123
4854
}).then(() => {
4955
expect(vm.$el.innerHTML).toBe('123')

test/unit/features/directives/text.spec.js

+6
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ describe('Directive v-text', () => {
3030
vm.a = {}
3131
}).then(() => {
3232
expect(vm.$el.innerHTML).toBe('{}')
33+
vm.a = { toString () { return 'foo' } }
34+
}).then(() => {
35+
expect(vm.$el.innerHTML).toBe('foo')
36+
vm.a = { toJSON () { return { foo: 'bar' } } }
37+
}).then(() => {
38+
expect(vm.$el.innerHTML).toBe('{\n "foo": "bar"\n}')
3339
vm.a = 123
3440
}).then(() => {
3541
expect(vm.$el.innerHTML).toBe('123')

0 commit comments

Comments
 (0)