File tree 3 files changed +13
-1
lines changed
test/unit/features/directives
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ export function isPromise (val: any): boolean {
85
85
export function toString ( val : any ) : string {
86
86
return val == null
87
87
? ''
88
- : typeof val === 'object'
88
+ : Array . isArray ( val ) || ( isPlainObject ( val ) && val . toString === _toString )
89
89
? JSON . stringify ( val , null , 2 )
90
90
: String ( val )
91
91
}
Original file line number Diff line number Diff line change @@ -44,6 +44,12 @@ describe('Directive v-html', () => {
44
44
vm . a = { }
45
45
} ) . then ( ( ) => {
46
46
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}' )
47
53
vm . a = 123
48
54
} ) . then ( ( ) => {
49
55
expect ( vm . $el . innerHTML ) . toBe ( '123' )
Original file line number Diff line number Diff line change @@ -30,6 +30,12 @@ describe('Directive v-text', () => {
30
30
vm . a = { }
31
31
} ) . then ( ( ) => {
32
32
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}' )
33
39
vm . a = 123
34
40
} ) . then ( ( ) => {
35
41
expect ( vm . $el . innerHTML ) . toBe ( '123' )
You can’t perform that action at this time.
0 commit comments