0
There is a typo, a comma is missing in "editPersonDialog" ["tasks"]
. This means that tasks
key is retrieved from editPersonDialog
string. Since there’s no tasks
in String.prototype
, "editPersonDialog" ["tasks"] === undefined
.
It should be:
computed: {
...mapGetters ("candidates", ["people"] ),
...mapGetters ("editPersonDialog", ["tasks"] ),
}
- [Vuejs]-Node.js/Express: Pass routes/ let other routes than root handle by the Single page application
- [Vuejs]-Laravel vue infinite scroll won't pull new data
Source:stackexchange.com