[Vuejs]-Conflicts between vue scoped styles and bootstrap

0👍

You can wrap your plugin in a div#myId and then use your scoped css to target elements inside that div#myId.

In your case you could target the element with the “close” tag like so:

div#myID .close{
    /* your styles here */
}

Leave a comment