Skip to content

Commit 0c67a2b

Browse files
Change to async
1 parent 81df08c commit 0c67a2b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to the "vuetify-resize-drawer" plugin will be documented in this file.
33

4+
## v3.1.4
5+
2024-03-13
6+
[main] (@webdevnerdstuff)
7+
* Change component to use `defineAsyncComponent`
8+
49
## v3.1.3
510
2024-02-26
611
[main] (@webdevnerdstuff)

Diff for: src/plugin/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function createVResizeDrawer(options: GlobalOptions = {}) {
1010
const install = (app: App) => {
1111
app.provide(globalOptions, options);
1212

13-
app.component('VResizeDrawer', VResizeDrawer);
13+
app.component('VResizeDrawer', defineAsyncComponent(() => import('./VResizeDrawer.vue')));
1414
};
1515

1616
return {

0 commit comments

Comments
 (0)