Skip to content

Commit

Permalink
docs: typo (#979)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-itsheng committed Apr 3, 2023
1 parent 1a05a1d commit 0db7433
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -399,7 +399,7 @@ app1.component('Foo', Foo) // equivalent to Vue.component('Foo', Foo)
app1.use(VueRouter) // equivalent to Vue.use(VueRouter)

const app2 = createApp(RootComponent2)
app2.component('Bar', Bar) // equivalent to Vue.use('Bar', Bar)
app2.component('Bar', Bar) // equivalent to Vue.component('Bar', Bar)
```

</details>
Expand Down
2 changes: 1 addition & 1 deletion README.zh-CN.md
Expand Up @@ -409,7 +409,7 @@ app1.component('Foo', Foo) // 相当于 Vue.component('Foo', Foo)
app1.use(VueRouter) // 相当于 Vue.use(VueRouter)

const app2 = createApp(RootComponent2)
app2.component('Bar', Bar) // 相当于 Vue.use('Bar', Bar)
app2.component('Bar', Bar) // 相当于 Vue.component('Bar', Bar)
```

</details>
Expand Down

0 comments on commit 0db7433

Please sign in to comment.