Skip to content

Commit dcc7504

Browse files
authored
fix(popover+tooltip): Allow indiviual component imports (bootstrap-vue#999)
* [tooltip class] import BvEvent direct * [popover class] Import ToolTip direct
1 parent d765976 commit dcc7504

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/classes/popover.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ToolTip } from './';
1+
import ToolTip from './tooltip';
22
import { assign } from '../utils/object';
33

44
const NAME = 'popover';

lib/classes/tooltip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Popper from 'popper.js';
22
import { assign, keys } from '../utils/object';
33
import { from as arrayFrom } from '../utils/array';
4-
import { BvEvent } from './';
4+
import BvEvent from './BvEvent';
55

66
const inBrowser = typeof window !== 'undefined' && typeof document !== 'undefined';
77

0 commit comments

Comments
 (0)