Skip to content

Commit fd3fd37

Browse files
authored
Update README.md
Minor edits for style and consistency
1 parent 5b7ee09 commit fd3fd37

File tree

1 file changed

+7
-7
lines changed
  • docs/markdown/reference/starter-templates

1 file changed

+7
-7
lines changed

docs/markdown/reference/starter-templates/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Vue.component('b-card-footer', bCardFooter);
135135
Vue.component('b-card-img', bCardImg);
136136
Vue.component('b-table', bTable);
137137

138-
// Or make available to your compoent or app:
138+
// Or make available to your component or app:
139139
export default {
140140
components: {
141141
bCard,
@@ -151,9 +151,9 @@ export default {
151151

152152
### Importing component groups and directives as Vue plugins
153153

154-
A compoent group, and/or directive, can be imported as a Vue plugin, by importing
155-
the component group or directive directory. Impoting `<b-card>` (and its related
156-
sub-components) and `<b-table>` can simply be done as:
154+
A component group and/or directive can be imported as a Vue plugin by importing
155+
the component group or directive directory. Importing `<b-card>` (and related
156+
sub-components) and `<b-table>` can be done with:
157157

158158
```js
159159
// Import the components as Vue plugins
@@ -167,9 +167,9 @@ Vue.use(Table);
167167
Now you can use the `<b-card>` (including the `<b-card-*>` sub-components) and `<b-table>`
168168
components in your project templates.
169169

170-
Note some component plugins automatically import other directives and components
170+
Note that some component plugins automatically import other directives and components
171171
(i.e. the `modal` plugin also imports the `v-b-modal` directive, and `nav` plugin
172-
automatically imports all `nav-*` sub compoents and the dropdown sub components).
172+
automatically imports all `nav-*` sub-components and the dropdown sub-components).
173173
Refer to the component reference or directive reference at the bottom of each
174-
documenttion page for details.
174+
documentation page for details.
175175

0 commit comments

Comments
 (0)