-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathv-model.spec.ts
107 lines (96 loc) · 1.61 KB
/
v-model.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import { defineInlineTest } from 'jscodeshift/src/testUtils'
const transform = require('../v-model')
defineInlineTest(
transform,
{},
`export default {
props: {
value: String
},
model: {
prop: 'title',
event: 'update'
},
emits: ['update:modelValue'],
methods: {
changePageTitle(title) {
this.$emit('update:modelValue', title)
}
}
}`,
`export default {
props: {
modelValue: String
},
emits: ['update:modelValue'],
methods: {
changePageTitle(title) {
this.$emit('update:modelValue', title)
},
updateTitle (title){
this.$emit('update:modelValue', title)
}
}
};`,
'transformation v-mode'
)
defineInlineTest(
transform,
{},
`export default {
props: {
value: String
},
model: {
prop: 'title',
event: 'change'
},
emits: ['update:modelValue']
}`,
`export default {
props: {
modelValue: String
},
emits: ['update:modelValue'],
methods: {
changeTitle (title){
this.$emit('update:modelValue', title)
}
}
}`,
'transformation v-mode no methods option'
)
defineInlineTest(
transform,
{},
`export default {
props: {
value: String
},
model: {
prop: 'title',
event: 'change'
},
emits: ['update:modelValue'],
methods: {
change(param){
this.$emit('change',param)
}
}
}`,
`export default {
props: {
modelValue: String
},
emits: ['update:modelValue'],
methods: {
change(param){
changeTitle(param);
},
changeTitle (title){
this.$emit('update:modelValue', title)
}
}
};`,
'transformation v-mode with a method call'
)