Skip to content

Instantly share code, notes, and snippets.

@matthewoestreich
Created April 10, 2019 01:31
Show Gist options
  • Save matthewoestreich/1f6e29889160208700b2d02cf1e3225b to your computer and use it in GitHub Desktop.
Save matthewoestreich/1f6e29889160208700b2d02cf1e3225b to your computer and use it in GitHub Desktop.
Import Material Design Bootstrap Vue
import Vue from 'vue';
import * as mdbVue from 'mdbvue';
import 'bootstrap-css-only/css/bootstrap.min.css';
import 'mdbvue/build/css/mdb.css';
Object.keys(mdbVue).forEach(name => {
Vue.component(name, mdbVue[name]);
});
export default Vue;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment