Skip to content

Commit 7ff1858

Browse files
committed
Fix: Show installation error message
1 parent 1aa75eb commit 7ff1858

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/install.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export const Vuetify3Dialog: Plugin = {
1818
try {
1919
initDialogsContext(app, options);
2020
initSnackbarContext(app, options);
21-
} catch(err: any) {
22-
console.error(`[Vuetify3Dialog] {err.message} [${err.stack}]`);
21+
} catch (err: any) {
22+
console.error(`[Vuetify3Dialog] ${err.message} [${err.stack}]`);
2323
}
2424
},
2525
};

0 commit comments

Comments
 (0)