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 11# Change Log
22All notable changes to the "vuetify-drilldown-table" plugin will be documented in this file.
33
4+ ## v1.1.4
5+ 2024-03-13
6+ [ main] (@webdevnerdstuff )
7+ * Change component to use ` defineAsyncComponent `
8+
49## v1.1.3
5102024-02-26
611[ main] (@webdevnerdstuff )
Original file line number Diff line number Diff line change 1+ import { defineAsyncComponent } from 'vue' ;
12import type { App } from 'vue' ;
23import type { GlobalOptions } from './types' ;
34import './styles/main.scss' ;
@@ -10,7 +11,7 @@ export function createVDrilldownTable(options: GlobalOptions = {}) {
1011 const install = ( app : App ) => {
1112 app . provide ( globalOptions , options ) ;
1213
13- app . component ( 'VDrilldownTable' , VDrilldownTable ) ;
14+ app . component ( 'VDrilldownTable' , defineAsyncComponent ( ( ) => import ( './ VDrilldownTable.vue' ) ) ) ;
1415 } ;
1516
1617 return {
You can’t perform that action at this time.
0 commit comments