{{pkg.description}}
Minified CSS and JavaScript with no documentation or original source files.
bower install {{pkg.name}} --save-dev
Source Sass, JavaScript, and documentation files.
npm install {{pkg.name}} --save-dev
For compiled components, use it within your Vue instance like this:
new Vue({ components: { '{{componentNameSurfixed}}': {{pkg.library}}.{{componentNameCamelCase}} }})
If you chosen to work with source components, just import* desired component like so:
import {{componentNameCamelCase}} from '{{pkg.name}}/src/components/{{componentName}}'
and then load it in your Vue instance:
new Vue({ components: { '{{componentNameSurfixed}}' : {{componentNameCamelCase}} }})
*Note: You will need Babel Loader in your Webpack config file to support ES6 syntax.