Skip to content

Instantly share code, notes, and snippets.

@christopheragnus
Created October 29, 2018 13:32
Show Gist options
  • Save christopheragnus/47d0105afeb272b709cbfa049292480e to your computer and use it in GitHub Desktop.
Save christopheragnus/47d0105afeb272b709cbfa049292480e to your computer and use it in GitHub Desktop.
Vuejs expressions
<div id="app">
<p>I have a {{ product }}</p>
<p>{{ product + 's' }}</p>
<p>{{ isWorking ? 'YES' : 'NO' }}</p> <p>{{ product.getSalePrice() }}</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment