A simple setup using Gulp & Bower together with Vue.js for modular development.
This is a port of vue-component-example, but with Component replaced by Bower.
To make things more test friendly, the directives, filters and components simply definition objects in their own files. This is the recommended way of using Vue.js for larger scale applications.
To get started, install Gulp and Bower globally, then clone this repo and install local dependencies:
$ npm install -g gulp bower
$ git clone https://github.com/alfrednerstu/vue-bower-example.git
$ cd vue-bower-example
$ npm install && bower install
$ gulp
Open index.html
to see the result.
$ gulp watch
This will watch files for change and re-build automatically.
Thanks to Even You for Vue.js, Bower Team for Bower & Fractal for Gulp.