var app = new Vue({ el: '#app', data: { link: 'https://tyrelsouza.com', }, methods: { changeLink(){ this.link = "https://tyrel.bike"; } } })