Already know HTML, CSS and JavaScript? Read the guide and start building things in no time!
https://vuejs.org/
https://about.gitlab.com/2016/10/20/why-we-chose-vue/
https://vuejs.org/
https://about.gitlab.com/2016/10/20/why-we-chose-vue/
JavaScript:
<div id="journal">
<input type="text" v-model="message">
<div>{{message}}</div>
</div>
JavaScript:
var journal = new Vue({
el: '#journal',
data: {
message: 'Your first entry'
}
});