Skip to content

Commit 8244a8f

Browse files
authored
Merge pull request #4 from evanleck/patch-1
Fix named import example in README.md
2 parents 6349b89 + c8291de commit 8244a8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ It's important to assign the direct reference to the dialog instance via `@dialo
7171
Alternatively, you can also import the component directly into your file without installing it first:
7272

7373
```js
74-
import { VueA11yDialog } from 'vue-a11y-dialog'
74+
import { A11yDialog } from 'vue-a11y-dialog'
7575
export default {
7676
name: 'YourComponent',
7777

7878
components: {
79-
'a11y-dialog': VueA11yDialog
79+
'a11y-dialog': A11yDialog
8080
},
8181

8282
methods: {

0 commit comments

Comments
 (0)