<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!'
}
}
})
This Pen doesn't use any external CSS resources.