We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
this
export default () => ({ count: 0, increment() { this.count++ } })
can become
function () { let _THIS_ return _THIS_ = { count: 0, increment() { _THIS_.count++ } } }