Skip to content

buefy/vue-cli-plugin-buefy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Nov 22, 2020
2aa8b1e · Nov 22, 2020

History

40 Commits
Mar 14, 2018
Mar 6, 2018
Nov 22, 2020
Jul 30, 2018
Mar 6, 2018
Mar 6, 2018
Mar 14, 2018
Mar 14, 2018
Mar 14, 2018
Mar 6, 2018
Mar 14, 2018
Apr 20, 2018
Mar 6, 2018
Mar 20, 2019
Mar 6, 2018
Jul 31, 2018
Nov 22, 2020
Apr 17, 2018
Mar 14, 2018

Repository files navigation

vue-cli-plugin-buefy

npm (scoped with tag) npm CircleCI Codecov Dependencies js-standard-style

Vue CLI 3.x plugin to add buefy to your Vue Project

Well, apparently you're an adventurer. We are happy to see you here.

Getting Started

If you don't have a project created with Vue CLI 3.x:

$ vue create my-vue-app

Install the plugin into your project:

$ cd my-vue-app
$ vue add buefy

Global sass resources

You can do that using the css.loaderOptions option in vue.config.js to pass some shared global variables to all your Sass styles:

// vue.config.js
const fs = require('fs')

module.exports = {
  css: {
    loaderOptions: {
      sass: {
        data: fs.readFileSync('src/variables.scss', 'utf-8')
      }
    }
  }
}

Changelog

Details of changes for each release are documented in the CHANGELOG.md.

Issues

Please make sure to read the Issue Reporting Checklist before opening an issue. Issues not conforming to the guidelines may be closed immediately.

Contribution

Please make sure to read the Contributing Guide before making a pull request.

License

MIT