0👍
✅
You should use back-ticks sign in getFullName
method.
var app = new Vue({ el: "#app", data: { name: "Mike" }, methods: { getFullName() { return `Name: ${this.name}`})
Source:stackexchange.com