var app = new Vue({ el: '#app', data: { title: "Hello world." }, methods: { sayHello(){ return this.title; } } })