summaryrefslogtreecommitdiff
path: root/docs/.vuepress/enhanceApp.js
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2020-03-04 09:59:47 +0300
committerDerick Montague <derick.montague@ibm.com>2020-03-20 21:26:14 +0300
commit3f6710a09c953405cc0bc8014eab89887122b17d (patch)
tree713e6118de3922bee39a690e2e3361069697056e /docs/.vuepress/enhanceApp.js
parenta06fe4695e7e4c09ea07540d3353cb05c36f1e37 (diff)
downloadwebui-vue-3f6710a09c953405cc0bc8014eab89887122b17d.tar.xz
Add buttons documentation
- Add documentation for how to use buttons - Update markup and CSS rulesets to support icons on the left or the right of text Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: Ic897f416e85824287360bc7ef5dc47c402d64eba
Diffstat (limited to 'docs/.vuepress/enhanceApp.js')
-rw-r--r--docs/.vuepress/enhanceApp.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/.vuepress/enhanceApp.js b/docs/.vuepress/enhanceApp.js
new file mode 100644
index 00000000..59c1f925
--- /dev/null
+++ b/docs/.vuepress/enhanceApp.js
@@ -0,0 +1,10 @@
+
+import "../../src/assets/styles/_obmc-custom.scss";
+import {
+ ButtonPlugin
+ } from 'bootstrap-vue';
+
+
+export default ({ Vue }) => {
+ Vue.use(ButtonPlugin);
+} \ No newline at end of file