(one, two, three)
| 42 | name: 'two', |
| 43 | methods: { |
| 44 | customThing(one, two, three) { |
| 45 | const { page } = this.instance |
| 46 | // Call page from analytics.page |
| 47 | page() |
| 48 | }, |
| 49 | niceFunc: (one, two, ...args) => { |
| 50 | argsToPassTwo = [ one, two ] |
| 51 | // Arrow functions break this.x context. The instance is instead injected as last arg |