Posts Vue
Post
Cancel

Vue

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/

1
2
3
4
<div id="journal">
  <input type="text" v-model="message">
  <div></div>
</div>
1
2
3
4
5
6
var journal = new Vue({
  el: '#journal',
  data: {
    message: 'Your first entry'
  }
});

origin - http://www.pipiscrew.com/?p=6213 js-vue

This post is licensed under CC BY 4.0 by the author.
Contents

Trending Tags