Guest User

Untitled

a guest
May 26th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. let bOctoVue = new Vue({
  2. el: "#myCoolElement",
  3. data: {
  4. myVar: "my very cool string"
  5. },
  6. mounted() {
  7. this.coolMethod()
  8. },
  9. methods: {
  10. coolMethod() {
  11. console.log(this.myVar)
  12. }
  13. }
  14. })
Add Comment
Please, Sign In to add comment