#todayilearned

by @jm3 · aka John Manoogian3

Frequent, bite-size mini-milestone updates as I fast-forward merge* my front-end web development skills up to 2019 levels. Learn more

Vue template directives

Posted at — Jun 2, 2019

Some initial basics:

  • v-if - conditionally render or remove an element if and only if truthy
  • v-for - loop
  • v-show - just hide the element (using display: none), but don’t removeĀ it or unhook events