[Vuejs]-Is there a way we can apply two vue.js libray on one element?

0👍

It’s not possible to combine two components, especially since they are third party libraries and you don’t have access to their source-code.


In general, however, there are a few possible solutions for your problem.

Instead of using component, you might want to use directives instead. These can be stacked on a component as much as you like, and as such modify its behavior.

You might also be interested in creating mixins.

Leave a comment