It seems all the VueJS bootstrap components were built on version 1.x and I get nothing but errors (even with packages claiming to support 2.0) when trying to use any of the packages with Vue 2.x
Is it possible to trigger bootstraps dropdown creation on elements from the componentCreated life cycle?
e.g.
export default {
componentCreated() {
$(el).createDropdown();
}
}
I've looked through the src of bootstraps dropdown but I cannot figure out how to call it on the element to initialize it as a dropdown.
Any help on this would be great thanks
