├── README.md ├── meta.json └── template ├── .babelrc ├── .eslintrc ├── .gitignore ├── README.md ├── dist ├── .gitkeep └── build.css ├── index.html ├── karma.conf.js ├── package.json ├── src ├── App.vue ├── components │ └── Hello.vue └── main.js └── test └── unit └── Hello.spec.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/README.md -------------------------------------------------------------------------------- /meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/meta.json -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"], 3 | } 4 | -------------------------------------------------------------------------------- /template/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/template/.eslintrc -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/template/README.md -------------------------------------------------------------------------------- /template/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/dist/build.css: -------------------------------------------------------------------------------- 1 | /*Dummy css file - will be replaced at build*/ 2 | -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/template/index.html -------------------------------------------------------------------------------- /template/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/template/karma.conf.js -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/template/src/App.vue -------------------------------------------------------------------------------- /template/src/components/Hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/template/src/components/Hello.vue -------------------------------------------------------------------------------- /template/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/template/src/main.js -------------------------------------------------------------------------------- /template/test/unit/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/browserify/HEAD/template/test/unit/Hello.spec.js --------------------------------------------------------------------------------