We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to setup @Getter to get the following output?
computed: { collectionCategoryObjects() { return this.$store.getters["entities/collections/getCollectionCategoryObjects"]({ department: this.department, collectionTitle: this.collectionTitle }) } }
How can I create @Getter in a compact format? Is there a way to setup a getter that is less verbose than this?
const Ncollection = namespace('entities/collections') // ... class .. { @Ncollection@Getter("getCollectionCategoryObjects") getterCollection: any get Collection() { return this.getterCollection({ department: this.department, collectionTitle: this.collectionTitle }) }
The text was updated successfully, but these errors were encountered:
In other words, please support curry getter
this.$store.getters['curryGetter'](someParam)
in vuex-class.
See details in How to pass parameters to the function in getters
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Is it possible to setup @Getter to get the following output?
How can I create @Getter in a compact format?
Is there a way to setup a getter that is less verbose than this?
The text was updated successfully, but these errors were encountered: