@@ -13,7 +13,7 @@ describe("vmodel", () => {
13
13
it ( "should work" , async ( ) => {
14
14
const comp1 = {
15
15
props : {
16
- test : String
16
+ test : String ,
17
17
} ,
18
18
setup ( props : { test : string } ) {
19
19
const testModel = useVModel ( props , "test" ) ;
@@ -23,24 +23,24 @@ describe("vmodel", () => {
23
23
} ) ;
24
24
25
25
return {
26
- testModel
26
+ testModel,
27
27
} ;
28
28
} ,
29
- template : `<p>{{testModel}}</p>`
29
+ template : `<p>{{testModel}}</p>` ,
30
30
} ;
31
31
32
32
const test = ref ( "propTest" ) ;
33
33
34
34
const vm = createVue ( {
35
35
components : {
36
- comp1
36
+ comp1,
37
37
} ,
38
38
template : `<comp1 v-model:test="test" />` ,
39
39
setup ( ) {
40
40
return {
41
- test
41
+ test,
42
42
} ;
43
- }
43
+ } ,
44
44
} ) ;
45
45
46
46
expect ( test . value ) . toBe ( "propTest" ) ;
@@ -53,7 +53,7 @@ describe("vmodel", () => {
53
53
it ( "should replace prop" , async ( ) => {
54
54
const comp1 = {
55
55
props : {
56
- test : String
56
+ test : String ,
57
57
} ,
58
58
setup ( props : { test : string } ) {
59
59
const test = useVModel ( props , "test" ) ;
@@ -63,24 +63,24 @@ describe("vmodel", () => {
63
63
} ) ;
64
64
65
65
return {
66
- test
66
+ test,
67
67
} ;
68
68
} ,
69
- template : `<p>{{test}}</p>`
69
+ template : `<p>{{test}}</p>` ,
70
70
} ;
71
71
72
72
const test = ref ( "propTest" ) ;
73
73
74
74
const vm = createVue ( {
75
75
components : {
76
- comp1
76
+ comp1,
77
77
} ,
78
78
template : `<comp1 v-model:test="test" />` ,
79
79
setup ( ) {
80
80
return {
81
- test
81
+ test,
82
82
} ;
83
- }
83
+ } ,
84
84
} ) ;
85
85
86
86
expect ( test . value ) . toBe ( "propTest" ) ;
@@ -90,8 +90,11 @@ describe("vmodel", () => {
90
90
expect ( test . value ) . toBe ( "mounted" ) ;
91
91
} ) ;
92
92
93
- it ( "should return empty ref if called outside setup" , ( ) => {
94
- const r = useVModel ( { a : 10 } , "a" ) ;
95
- expect ( r . value ) . toBeUndefined ( ) ;
93
+ it ( "should throw an error if the method not called in the setup or lifecycle hook" , ( ) => {
94
+ expect ( ( ) => useVModel ( { myProp : 1 } , "myProp" ) ) . toThrow (
95
+ new Error (
96
+ "useVModel must be called from the setup or lifecycle hook methods."
97
+ )
98
+ ) ;
96
99
} ) ;
97
100
} ) ;
0 commit comments