├── .gitignore ├── README.md ├── app ├── App.vue ├── assets │ └── index.html ├── components │ └── Hello.vue ├── main.js └── router │ └── index.js ├── brunch-config.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquirk/brunch-vue-barebones/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquirk/brunch-vue-barebones/HEAD/README.md -------------------------------------------------------------------------------- /app/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquirk/brunch-vue-barebones/HEAD/app/App.vue -------------------------------------------------------------------------------- /app/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquirk/brunch-vue-barebones/HEAD/app/assets/index.html -------------------------------------------------------------------------------- /app/components/Hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquirk/brunch-vue-barebones/HEAD/app/components/Hello.vue -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquirk/brunch-vue-barebones/HEAD/app/main.js -------------------------------------------------------------------------------- /app/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquirk/brunch-vue-barebones/HEAD/app/router/index.js -------------------------------------------------------------------------------- /brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquirk/brunch-vue-barebones/HEAD/brunch-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomquirk/brunch-vue-barebones/HEAD/package.json --------------------------------------------------------------------------------