mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-01-31 15:37:09 +01:00
* fix: missing CheckIcon import in LanguageSelector * fix: #114 and error handling * fix: #97 * fix: lint * feat: #104 * fix: #72
6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
export default defineNuxtPlugin((nuxtApp) => {
|
|
nuxtApp.hook("vue:error", (error, instance, info) => {
|
|
console.error(error, instance, info);
|
|
});
|
|
});
|