Computed var over the given rows. Returns: The data rows.
(self)
| 4832 | |
| 4833 | @rx.var(cache=True, auto_deps=False) |
| 4834 | async def data(self) -> list[dict[str, Any]]: |
| 4835 | """Computed var over the given rows. |
| 4836 | |
| 4837 | Returns: |
| 4838 | The data rows. |
| 4839 | """ |
| 4840 | return await self.get_var_value(self._data) |
| 4841 | |
| 4842 | @rx.var |
| 4843 | async def foo(self) -> list[dict[str, Any]]: |
nothing calls this directly
no test coverage detected