var app = new Vue({ el: '#app', data: { title: "Hello World", link: "https://google.com", finishedLink: 'Google' }, methods: { sayHello(){ this.title = 'Hello'; return this.title; } } })