useTransactionGroups (B) and useTransactions (A)groups property.transactions page and the (A) is used in the TFilter component.transactions data is requested with useAsyncData that (as per docs) is supposed to use useState for the data it fetches to cache it.transactions API endpoint from (A), because:TFilter -> (A): filtersTransactions (page) -> (B): groups -> (A): transactionsuseSatate to manage data inside (A) and (B)transactions page and pass filter and groups as props to the corresponding components, everything works great.useAsyncData inside. I think I don't understand something and maybe composables are not even designed to work that way.