const app = new Vue({ el: '#root', data: { title: "Now the title is set through JavaScript", }, methods: { onClick(e) { alert(e.target.textContent); } }, });