Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@NimaAra
Last active February 27, 2019 23:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NimaAra/5e9bc3bf7fbc697b0c858b7f3fd6a1fa to your computer and use it in GitHub Desktop.
Save NimaAra/5e9bc3bf7fbc697b0c858b7f3fd6a1fa to your computer and use it in GitHub Desktop.
Contains various resources relating to Vue.js

Typescript

Vuex

Animations

Tips

Build Targets

  • Vue App: vue build --target app
    • Normal Vue app bundle.
    • Includes your code + the Vue framework.
  • Vue Library: vue build --target lib
    • A distributable Vue library bundle.
    • Only includes your code and not the Vue framework.
  • Web Component: vue build --target wc --name my-component
    • A distributable Web Compnoent.
    • Only includes your code and not the Vue framework.
    • Can be included into any page where Vue is imported.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment