Example using vue-loader with Webpack.
- Using
vue-loaderwith hot reload for development - Configuring Webpack loaders
- Building for production with minification
- Linting JavaScript inside
*.vuefiles with ESLint - Testing
*.vuecomponents with Karma + Jasmine in PhantomJS
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# run unit tests
npm testFor detailed explanation on how things work, read the docs for vue-loader.