RIGHT 使用典型的函式語法定義方法

new Vue({
  el:"#app",
  data:{
    foo: "bar"
  },
  methods:{
    doSomething: function(){
      this.foo = "baz"
    }
  }
})

或者,如果你使用的是 javascript 編譯器或支援 Ecmascript 2015 的瀏覽器

new Vue({
  el:"#app",
  data:{
    foo: "bar"
  },
  methods:{
    doSomething(){
      this.foo = "baz"
    }
  }
})