click-confirm
click-confirm copied to clipboard
Doesn't work with Bootstrap Vue 2.1.0
ERROR in ./node_modules/click-confirm/dist/click-confirm.common.js Module not found: Error: Can't resolve 'bootstrap-vue/es/components/popover/popover' in '/usr/src/service/node_modules/click-confirm/dist'
Any solution?
ERROR Failed to compile with 1 errors 7:06:10 PM
This dependency was not found:
- bootstrap-vue/es/components/popover/popover in ./node_modules/click-confirm/dist/click-confirm.common.js
I have the same error. I'm using: "bootstrap-vue": "^2.13.0"
It worked for me like below, but it's definitly not recommendable. It seems like there's a problem in finding path. just hoping it could be a tiny clue though...
At node_modules\click-confirm\dist\click-confirm.common.js
line 7
from
var bPopover = _interopDefault(require('bootstrap-vue/es/components/popover/popover'));
to
var bPopover = _interopDefault(require('bootstrap-vue/esm/components/popover/popover'));