github.com/benoitkugler/goacve@v0.0.0-20201217100549-151ce6e55dc8/server/frontend/bv/src/plugins/bootstrap-vue.js (about) 1 import Vue from "vue"; 2 3 import BootstrapVue from "bootstrap-vue"; 4 import "bootstrap/dist/css/bootstrap.min.css"; 5 import "bootstrap-vue/dist/bootstrap-vue.css"; 6 import { 7 BIconDownload, 8 BIconUpload, 9 BIconTrash, 10 BIconLock, 11 BIconUnlock, 12 BIconExclamationCircle, 13 BIconInfo, 14 BIconPencil, 15 BIconChevronRight, 16 BIconChevronDown, 17 BIconX, 18 BIconPlus, 19 BIconCheck, 20 BIconArrowRepeat, 21 BIconEnvelope, 22 BIconClock 23 } from "bootstrap-vue"; 24 25 Vue.use(BootstrapVue); 26 Vue.component("BIconDownload", BIconDownload); 27 Vue.component("BIconUpload", BIconUpload); 28 Vue.component("BIconTrash", BIconTrash); 29 Vue.component("BIconLock", BIconLock); 30 Vue.component("BIconUnlock", BIconUnlock); 31 Vue.component("BIconExclamationCircle", BIconExclamationCircle); 32 Vue.component("BIconInfo", BIconInfo); 33 Vue.component("BIconPencil", BIconPencil); 34 Vue.component("BIconChevronRight", BIconChevronRight); 35 Vue.component("BIconChevronDown", BIconChevronDown); 36 Vue.component("BIconX", BIconX); 37 Vue.component("BIconPlus", BIconPlus); 38 Vue.component("BIconCheck", BIconCheck); 39 Vue.component("BIconArrowRepeat", BIconArrowRepeat); 40 Vue.component("BIconEnvelope", BIconEnvelope); 41 Vue.component("BIconClock", BIconClock);