Composable
How to use methods from one composable (for example method clear in useCart) in another composable (useUser)?
4 Replies
following the usual Vue pattern should work
generally, I would not recommend it, in case if a method involves fetching
but possible
@skirianov Thanks for your reply, but when I'am trying to use one composable in another I got an error.
@Pavel I was expecting something like this tbh -_-
Yeah, you can't call the composable like this, this is the limitation of composition api package I suppose. You will have to do it one by one in the setup method
Got it, thanks!