Skip to content

Commit 33b0788

Browse files
authored
Merge pull request #29 from asmadsen/access-getters-inside-getters
Add ability to access getters inside other getters
2 parents c9c3f69 + 86a8fb3 commit 33b0788

File tree

10 files changed

+58
-13
lines changed

10 files changed

+58
-13
lines changed

dist/module.js

Lines changed: 13 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/symbols.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export declare const _submodule = "__submodule__";
1414
export declare const _module = "__module__";
1515
export declare type MutationFunction = (state: any, payload: any) => void;
1616
export declare type ActionFunction = (context: any, payload: any) => Promise<any>;
17-
export declare type GetterFunction = (state: any) => any;
17+
export declare type GetterFunction = (state: any, getters: any) => any;
1818
export interface VuexMap {
1919
type: "state";
2020
value: string;

js/module.js

Lines changed: 13 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)