0👍
This workaround helped me
import { BVPlugin } from "bootstrap-vue";
function createWrapper() {
return shallowMount(App, {
global: {
plugins: [BVPlugin]
}
});
}
Source:stackexchange.com
0👍
This workaround helped me
import { BVPlugin } from "bootstrap-vue";
function createWrapper() {
return shallowMount(App, {
global: {
plugins: [BVPlugin]
}
});
}