This repository was archived by the owner on Mar 10, 2025. It is now read-only.

Description
I have a state object like so:
state: {
something: {
foo: 1
}
}
However if I try to create a getter to foo like so:
@State("something.foo")
public foo;
It doesnt do anything, I assume because it doesnt realise the . is meaning look in a child element, so is this a valid use case or a better approach to handling complex state objects?