diff --git a/vue.md b/vue.md index 5b3706091..c71d8d262 100644 --- a/vue.md +++ b/vue.md @@ -2,116 +2,362 @@ title: Vue.js category: JavaScript layout: 2017/sheet -updated: 2019-11-22 +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 %} +{%raw%} -### Lists +Expressions +---------- +{: .-three-column} + +### Expressions ```html -
I have a {{ product }}
+{{ product + 's' }}
+{{ isWorking ? 'YES' : 'NO' }}
+{{ product.getSalePrice() }}
+