let bOctoVue = new Vue({ el: "#myCoolElement", data: { myVar: "my very cool string" }, mounted() { this.coolMethod() }, methods: { coolMethod() { console.log(this.myVar) } } })