From 8e9c207d3dbd2c3526bedf06e013284819991a54 Mon Sep 17 00:00:00 2001 From: skyway777 Date: Fri, 26 May 2017 15:48:11 +0300 Subject: [PATCH] components-extra does not work (#457) --- lib/components-extra/index.js | 2 +- lib/directives-extra/index.js | 2 +- lib/extra.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/components-extra/index.js b/lib/components-extra/index.js index 27979a8b9bd..f651c4228be 100755 --- a/lib/components-extra/index.js +++ b/lib/components-extra/index.js @@ -1,5 +1,5 @@ import bExTest from './test.vue'; -export default { +export { bExTest }; diff --git a/lib/directives-extra/index.js b/lib/directives-extra/index.js index 8730706d9ba..c455d91f9a2 100755 --- a/lib/directives-extra/index.js +++ b/lib/directives-extra/index.js @@ -1,5 +1,5 @@ import bExTest from './test'; -export default { +export { bExTest }; diff --git a/lib/extra.js b/lib/extra.js index f1885f2c326..7ff02620957 100755 --- a/lib/extra.js +++ b/lib/extra.js @@ -10,7 +10,7 @@ const VuePlugin = { return; } - if (!Vue._bootstrap_vue_extra_installed) { + if (Vue._bootstrap_vue_extra_installed) { return; }