Created
April 14, 2018 20:51
-
-
Save moltar/3881738eeec420fac145455ac802dc13 to your computer and use it in GitHub Desktop.
vue bootstrap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable import/no-extraneous-dependencies, import/no-unresolved */ | |
import Vue from 'vue' | |
import { | |
Layout, Modal, Button, FormGroup, FormInput, | |
FormTextarea, InputGroup, Jumbotron, Collapse, Card, | |
Tabs, Popover, Badge | |
} from 'bootstrap-vue/es/components' | |
Vue.use(Layout) | |
Vue.use(Modal) | |
Vue.use(Button) | |
Vue.use(FormGroup) | |
Vue.use(FormInput) | |
Vue.use(FormTextarea) | |
Vue.use(InputGroup) | |
Vue.use(Jumbotron) | |
Vue.use(Collapse) | |
Vue.use(Card) | |
Vue.use(Tabs) | |
Vue.use(Popover) | |
Vue.use(Badge) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment