<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
Reactivity - The Simple Description:
A Vue instance will rebind the get()/set() methods of a property in data() using Object.defineProperty to listen for any functions or methods that request the value of that property.
Reactivity - The Really Simple Description:
IT'S MAGIC!
<input type="checkbox"
@input="toggleCheckBox"
:checked="complete">
v-if, v-else-if, v-else, will evaluate a JavaScript statement for truthiness, and create or destroy DOM elements based on that.
v-for can iterate over an Array or Object and give you access to each element or property.
$ npm install -g @vue/cli
$ vue init name-of-project
$ cd name-of-project
@fimion on twitter
Examples source code for this talk:
https://github.com/fimion/intro-to-vue-2019-08