Skip to content

Instantly share code, notes, and snippets.

@moltar
Created April 14, 2018 20:51
Show Gist options
  • Save moltar/3881738eeec420fac145455ac802dc13 to your computer and use it in GitHub Desktop.
Save moltar/3881738eeec420fac145455ac802dc13 to your computer and use it in GitHub Desktop.
vue bootstrap
/* 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