fix(computed): support arrow function usage for computed option
fix #733
This commit is contained in:
@@ -52,9 +52,7 @@ describe('api: options', () => {
|
||||
bar(): number {
|
||||
return this.foo + 1
|
||||
},
|
||||
baz(): number {
|
||||
return this.bar + 1
|
||||
}
|
||||
baz: (vm): number => vm.bar + 1
|
||||
},
|
||||
render() {
|
||||
return h(
|
||||
|
||||
Reference in New Issue
Block a user