reflex
reflex copied to clipboard
Support unpacking for computed vars
we should be able to support doing something like this:
class State(rx.State):
@rx.var
def values()-> List[str]: # or replace with Tuple
return [1, 2, 3, 4]
def index():
a, b, c, d = State.values
...