Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 379 Bytes

readme.md

File metadata and controls

21 lines (11 loc) · 379 Bytes

VueJS examples

Vuex

  • counter tag for Vuex default counter example

  • counter-hot tag for Vuex hot reload counter example

  • todomvc tag for Vuex TODO MVC application example

GIT helpers

Save and push tag

  • git tag -a <tagname> -m "tag description"

  • git push origin <tagname>

Create branch from tag

git checkout -b <branchname> <tagname>