Vue 2.0 Hello World

by Alexey Ryazhskikh

HTML

<script src="https://unpkg.com/vue"></script>

<div id="app">
  <p>{{ message }} {{test}}</p>
</div>

JavaScript

new Vue({
  el: '#app',
  data: function() { 
    return {
      message: 'Hello Vue.js!',
      test : "321"
    };
  }, 
  mount() {
    this.test = "123";
  }
})