Skip to content

Commit 6ba8c46

Browse files
authoredNov 5, 2017
perf: move repetitive plugin code to plugin.js (#1285)
* [plugins.js] Move repetitive Plugin code to plugin.js * Update index.js * Update index.js * Update index.js * Update plugins.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * docs: Use shorter plugin import path * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update index.js * Update meta.json * Update README.md
1 parent e1e701b commit 6ba8c46

File tree

47 files changed

+181
-309
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+181
-309
lines changed
 

‎docs/components/importdoc.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
</p>
3838
<p class="mb-0">
3939
<code v-if="$route.name === 'docs-components-slug'">
40-
import {{pluginName}} from 'bootstrap-vue/es/components/{{$route.params.slug}};
40+
import { {{pluginName}} } from 'bootstrap-vue/es/components;
4141
</code>
4242
<code v-else>
43-
import {{pluginName}} from 'bootstrap-vue/es/directives/{{$route.params.slug}};
43+
import { {{pluginName}} } from 'bootstrap-vue/es/directives;
4444
</code>
4545
</p>
4646
<p>

‎docs/markdown/intro/README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -110,29 +110,30 @@ Vue.directive('b-modal', bModalDirective);
110110
Vue and ES2015 allow for various syntaxes here, so feel free to utilize kebab-casing (shown),
111111
camel-casing, pascal-casing, and/or object property shorthand.
112112

113-
### Components and Directives as Vue plugins
113+
### Component groups and Directives as Vue plugins
114114

115115
You can also import component groups and directives as Vue plugins by importing
116116
the component group or directive directory:
117117

118118
```js
119119
// This imports <b-modal> as well as the v-b-modal directive as a plugin:
120-
import Modal from 'bootstrap-vue/es/components/modal';
120+
import { Modal } from 'bootstrap-vue/es/components';
121121
Vue.use(Modal);
122122

123123
// This imports <b-card> along with all the <b-card-*> sub-components as a plugin:
124-
import Card from 'bootstrap-vue/es/components/card';
124+
import { Card } from 'bootstrap-vue/es/components';
125125
Vue.use(Card);
126126

127127
// This imports directive v-b-scrollspy as a plugin:
128-
import Scrollspy from 'bootstrap-vue/es/directives/scrollspy';
128+
import { Scrollspy } from 'bootstrap-vue/es/directives';
129129
Vue.use(Scrollspy);
130130
```
131131

132132
When importing as plugins, all subcomponents and related directives are imported in most cases.
133133
i.e. When importing `<b-nav>`, all the `<nav-*>` sub components are also included, as well all
134134
dropdown sub components.
135135

136+
Reffer to the component and directive documentation for details.
136137

137138
### Webpack + Babel
138139

0 commit comments

Comments
 (0)
Please sign in to comment.