bigfang / vuejs-brunch

Adds support to Brunch for pre-compiling single file Vue components.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vuejs Brunch

Adds support to Brunch for pre-compiling single file Vue components. Based on vue-brunch plugin.

Installation

npm install vuejs-brunch --save-dev

Once the plugin has been installed, you are all set.

Usage

When ever you include a .vue file in your project, Brunch will automatically compile and write the converted module into your applications script path.

Extracting CSS

To extract the CSS into files, simply include to extractCSS option in your Brunch config like so...

plugins: {
    vue: {
      extractCSS: true,
      out: '../public/styles/components.css'
    }
}

License

This component is licensed under MIT, see license.md for details.

About

Adds support to Brunch for pre-compiling single file Vue components.

License:MIT License


Languages

Language:JavaScript 100.0%