/vue-dist

Vue.js UMD distribution-only package

Primary LanguageJavaScriptMIT LicenseMIT

vue-dist

alt text alt text

Vue.js UMD distribution-only package


Hint: If you are looking for Vue.Js please use the official repository @vuejs/vue

Reasons to use this package

  • 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

NODE_ENV

If NODE_ENV=development is set the packages uses the vue.js file instead of vue.min.js.

Example snippet

const Vue = require('vue-dist')

const app = new Vue({
  el: '#app',
  data: {
    message: 'Hello Vue!'
  }
})