Created
April 10, 2019 01:31
-
-
Save matthewoestreich/1f6e29889160208700b2d02cf1e3225b to your computer and use it in GitHub Desktop.
Import Material Design Bootstrap Vue
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
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