Reputation: 563
I want to use a tooltip from the bootstrap-vue. When I add
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
to get the tooltip style, then the whole view of my application is changing. Is it possible to import css only to my tooltip?
Upvotes: 7
Views: 1568
Reputation: 397
You can import the tooltip component from the src
folder, like this
import 'bootstrap-vue/src/components/tooltip'
Upvotes: 1