spboyer / social-linker

DEPRECATED - Consolidating tools to --->

Home Page:https://github.com/spboyer/advocate-linkers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Function shorthand

btholt opened this issue · comments

On lines like : https://github.com/spboyer/social-linker/blob/master/src/views/Settings.vue#L114

You can use the shorthand:

const myObj = {
  myFuncName() {
    // do stuff
  }
}

Not required, but most code is written this way these days.