Skip to content

Commit 0b143e8

Browse files
authored
Merge pull request #61 from akiomik/patch-1
Fix typo
2 parents 6b758e3 + ba1179d commit 0b143e8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/guide/migration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const App = {
1515
props: ['foo']
1616
}
1717

18-
const mount(App, {
18+
const wrapper = mount(App, {
1919
propsData: {
2020
foo: 'bar'
2121
}
@@ -29,7 +29,7 @@ const App = {
2929
props: ['foo']
3030
}
3131

32-
const mount(App, {
32+
const wrapper = mount(App, {
3333
props: {
3434
foo: 'bar'
3535
}
@@ -112,7 +112,7 @@ const $route = {
112112
}
113113
}
114114

115-
const mount(App, {
115+
const wrapper = mount(App, {
116116
stubs: {
117117
Foo: true
118118
},
@@ -131,7 +131,7 @@ const $route = {
131131
}
132132
}
133133

134-
const mount(App, {
134+
const wrapper = mount(App, {
135135
global: {
136136
stubs: {
137137
Foo: true

0 commit comments

Comments
 (0)