@@ -135,7 +135,7 @@ Vue.component('b-card-footer', bCardFooter);
135
135
Vue .component (' b-card-img' , bCardImg);
136
136
Vue .component (' b-table' , bTable);
137
137
138
- // Or make available to your compoent or app:
138
+ // Or make available to your component or app:
139
139
export default {
140
140
components: {
141
141
bCard,
@@ -151,9 +151,9 @@ export default {
151
151
152
152
### Importing component groups and directives as Vue plugins
153
153
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 :
157
157
158
158
``` js
159
159
// Import the components as Vue plugins
@@ -167,9 +167,9 @@ Vue.use(Table);
167
167
Now you can use the ` <b-card> ` (including the ` <b-card-*> ` sub-components) and ` <b-table> `
168
168
components in your project templates.
169
169
170
- Note some component plugins automatically import other directives and components
170
+ Note that some component plugins automatically import other directives and components
171
171
(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).
173
173
Refer to the component reference or directive reference at the bottom of each
174
- documenttion page for details.
174
+ documentation page for details.
175
175
0 commit comments