File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed
Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 11import { App , Plugin } from 'vue' ;
2- import VDrilldownTableComponent from './plugin' ;
2+ import { VDrilldownTable } from './plugin' ;
33
44const install = ( app : App ) => {
5- app . component ( 'VDrilldownTable' , VDrilldownTableComponent ) ;
5+ app . component ( 'VDrilldownTable' , VDrilldownTable ) ;
66} ;
77
8- VDrilldownTableComponent . install = install ;
8+ VDrilldownTable . install = install ;
99
10-
11- export const VDrilldownTable = VDrilldownTableComponent ;
12-
13- export default VDrilldownTableComponent as unknown as Plugin ;
10+ export default VDrilldownTable as unknown as Plugin ;
Original file line number Diff line number Diff line change 1- import VDrilldownTable from '@/plugin/VDrilldownTable.vue' ;
2-
3-
4- export default VDrilldownTable ;
1+ export { default as VDrilldownTable } from './VDrilldownTable.vue' ;
You can’t perform that action at this time.
0 commit comments