Thanks for this video, I really enjoyed learning about how you approach certain problems with Vue. Great stuff as always! Is there a link to this code anywhere so I can take a look at it? Thanks!
@PilarczykM Жыл бұрын
Can someone provide link to watch blitz app showed here?
@kklowd Жыл бұрын
What I really want to know is why composables over classes? I'm not against composables but I have scoured the Internet and there's no definitive answer as to why the js world is going with composables. I'm looking for the pros and cons. This is also a common question I've found with other js developers who have an oop background
@magdasmircea4419 Жыл бұрын
Composables is not a JS concept it's a vuejs concept. and JS can be written both as an OOP language with classes or as a fuctional language with functions. And as far as I know not many JS developers write classes the clear example is React moving away from class components to functional components. JS was never intended to be an OOP language even though it supports OOP with prototype inheritance
@alifnuryana2166 Жыл бұрын
i think, maybe because class in javascript is syntax sugar. under the hood it's function.