[Vuejs]-Problems with Vue.js $ interpolation

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}`})

Leave a comment