CSS frameworks in Vue.js CSS frameworks in Vue.js vue.js vue.js

CSS frameworks in Vue.js


You should be able to do this since bulba's main entry in package.json points to bulma.sass.

<style lang="sass" src="bulma"></style><style>  /* Your css for this file... */</style>

or you can do

<style lang="sass">  @import "bulma"  /* Your css for this file... */</style>

There's no need to do import bulma from 'bulma' in your <script>.

If you can't just use the style tag it would depend on your webpack config. If you're using the vue-cli webpack template I believe you should be good.