We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81df08c commit 0c67a2bCopy full SHA for 0c67a2b
CHANGELOG.md
@@ -1,6 +1,11 @@
1
# Change Log
2
All notable changes to the "vuetify-resize-drawer" plugin will be documented in this file.
3
4
+## v3.1.4
5
+2024-03-13
6
+[main] (@webdevnerdstuff)
7
+* Change component to use `defineAsyncComponent`
8
+
9
## v3.1.3
10
2024-02-26
11
[main] (@webdevnerdstuff)
src/plugin/index.ts
@@ -10,7 +10,7 @@ export function createVResizeDrawer(options: GlobalOptions = {}) {
const install = (app: App) => {
app.provide(globalOptions, options);
12
13
- app.component('VResizeDrawer', VResizeDrawer);
+ app.component('VResizeDrawer', defineAsyncComponent(() => import('./VResizeDrawer.vue')));
14
};
15
16
return {
0 commit comments