<div id="app" style="text-align: center;">
  <h1>{{ title }}</h1>
  <h3>By {{ author }}</h3>
  
  <p>{{ content }}</p>
</div>
new Vue({
  el: '#app',
  data: function() {
    return {
      title: 'Vue Binding Example',
      author: 'Ben Hofferber',
      content: 'Hello World!'
    }
  }
})

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.13/vue.js