A simple Vue 2.0 Webpack &
vue-loader
setup for quick prototyping. Note this template is not suitable for production - for that you may want to wait for an official 2.0 webpack template.
This template is Vue 2.0 compatible. For Vue 1.x use this command:
vue init lioneil/webpack-umd#1.0 my-project
This is a project template for vue-cli.
$ npm install -g vue-cli
$ vue init lioneil/webpack-umd my-project
$ cd my-project
$ npm install
$ npm run dev
To build UMD javascripts:
$ npm run build
To change the component name, edit build/production.js
// build/production.js
function install (Vue) {
Vue.component('change-me', Component);
};
<link rel="stylesheet" href="/dist/my-project.min.css">
...
<my-project></my-project>
...
<script src="/dist/my-project.min.js"></script>
-
npm run dev
: Webpack +vue-loader
with proper config for source maps & hot-reload. -
npm run build
: build with CSS/UMD JS minification.
For detailed explanation on how things work, consult the docs for vue-loader. Also check out the breaking changes in [email protected].
You can fork this repo to create your own boilerplate, and use it with vue-cli
:
vue init username/repo my-project