summaryrefslogtreecommitdiff
path: root/docs/.vuepress/enhanceApp.js
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2020-03-04 03:11:44 +0300
committerDerick Montague <derick.montague@ibm.com>2020-03-20 21:26:36 +0300
commit4e90eed0a2b03b675f93bd3e731cb72101266c47 (patch)
tree7c368efeebf7ba57f30144bff9cd31f57e41b055 /docs/.vuepress/enhanceApp.js
parent3f6710a09c953405cc0bc8014eab89887122b17d (diff)
downloadwebui-vue-4e90eed0a2b03b675f93bd3e731cb72101266c47.tar.xz
Add toast component documentation
- Add documentation that describes when and how to use a toast message with code snippets - Add an informational toast method in the BVToastMixin - Add BVToastMixin to enhaceApp to register mixin globally. Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: I89bf2aa8b3fdb9294354a80c98ccf692b6e3615a
Diffstat (limited to 'docs/.vuepress/enhanceApp.js')
-rw-r--r--docs/.vuepress/enhanceApp.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/docs/.vuepress/enhanceApp.js b/docs/.vuepress/enhanceApp.js
index 59c1f925..799cf208 100644
--- a/docs/.vuepress/enhanceApp.js
+++ b/docs/.vuepress/enhanceApp.js
@@ -1,10 +1,19 @@
+// OpenBMC Imports
import "../../src/assets/styles/_obmc-custom.scss";
+import BVToastMixin from "../../src/components/Mixins/BVToastMixin";
+
+// Bootstrap-vue Plugin imports
import {
- ButtonPlugin
+ ButtonPlugin,
+ ToastPlugin
} from 'bootstrap-vue';
export default ({ Vue }) => {
Vue.use(ButtonPlugin);
+ Vue.use(ToastPlugin);
+
+ // BMC Components and Mixins
+ Vue.mixin('BVToastMixin', BVToastMixin);
} \ No newline at end of file