0๐
โ
Iโve found the problem, I did not nest the maps in computed
.
@Component({
components: {
SomeComponent,
...
},
computed { // <--- This line solved it
...mapGetters(['currentSubscription']),
...mapState({
content: (state: RootState) => state.content,
})
}
})
This way it is all working fine
Source:stackexchange.com