Vue + Bulma = Vulma

This is a Vue UI component library based on Bulma.

Prerequisites

Install vue-cli

$ npm i -g vue-cli

Create project

Using webpack template

$ vue init webpack my-project
$ cd my-project
$ npm i

Add Vulma to project

Install

$ npm i -S vulma

Change src/main.js adding these lines:

import Vulma from 'vulma'
Vue.use(Vulma)

Include vulma folder in Babel loader (build/webpack.base.conf.js)

{
  test: /\.js$/,
  loader: 'babel-loader',
  include: [resolve('src'), resolve('test'), resolve('node_modules/vulma')]
}

Test it...

$ npm run dev

Done!

Live Demo

https://vulma.org/#/

GitHub