--- title: Vue.js category: JavaScript updated: 2019-12-26 weight: -10 intro: | [Vue.js](https://vuejs.org/) is an open-source Model–view–viewmodel JavaScript framework for building user interfaces and single-page applications. --- {%raw%} Expressions ---------- {: .-three-column} ### Expressions ```html

I have a {{ product }}

{{ product + 's' }}

{{ isWorking ? 'YES' : 'NO' }}

{{ product.getSalePrice() }}

``` See: [Delimiters](https://vuejs.org/v2/api/#delimiters) ### Binding ```html ... ``` #### Shorthand syntax ```html ... ``` {: data-line="1"} #### True or false will add or remove attribute ```html