Merge pull request #17612 from MrAnyx/patch-1

Fix typo in the sub component documentation
This commit is contained in:
jonniebigodes 2022-03-02 19:47:31 +00:00 committed by GitHub
commit 5e275b3189
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ export const Empty = (args) => ({
setup() {
//👇 The args will now be passed down to the template
return { args };
}
},
template: '<List v-bind="args"/>',
});
@ -28,7 +28,7 @@ export const OneItem = (args) => ({
setup() {
//👇 The args will now be passed down to the template
return { args };
}
},
template: '<List v-bind="args"><ListItem /></List>',
});
```
```