Vue.js UMD distribution-only package
Hint: If you are looking for Vue.Js please use the official repository @vuejs/vue
- When you are packaging Electron without modular bundlers like webpack
- For a modular loader on the client side (Seajs, RequireJS)
- Your crazy experimental pet-project
If NODE_ENV=development
is set the packages uses the vue.js
file instead of vue.min.js
.
const Vue = require('vue-dist')
const app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})