File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All notable changes to the "vuetify-drilldown-table" plugin will be documented in this file.
3
3
4
+ ## v1.1.4
5
+ 2024-03-13
6
+ [ main] (@webdevnerdstuff )
7
+ * Change component to use ` defineAsyncComponent `
8
+
4
9
## v1.1.3
5
10
2024-02-26
6
11
[ main] (@webdevnerdstuff )
Original file line number Diff line number Diff line change
1
+ import { defineAsyncComponent } from 'vue' ;
1
2
import type { App } from 'vue' ;
2
3
import type { GlobalOptions } from './types' ;
3
4
import './styles/main.scss' ;
@@ -10,7 +11,7 @@ export function createVDrilldownTable(options: GlobalOptions = {}) {
10
11
const install = ( app : App ) => {
11
12
app . provide ( globalOptions , options ) ;
12
13
13
- app . component ( 'VDrilldownTable' , VDrilldownTable ) ;
14
+ app . component ( 'VDrilldownTable' , defineAsyncComponent ( ( ) => import ( './ VDrilldownTable.vue' ) ) ) ;
14
15
} ;
15
16
16
17
return {
You can’t perform that action at this time.
0 commit comments