[Vuejs]-Vue custom component

0👍

Yes, it is definitely possible. You can use slots for the contents that need to be passed along. If you want custom behavior (on a click for example), you can also emit events using $emit to the parent component.

Leave a comment