feat(packages/vue): add custom error

This commit is contained in:
2024-10-05 22:02:03 +07:00
parent 2ff7196241
commit b525d08363
2 changed files with 8 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
export class VueToolsError extends Error {
constructor(message: string) {
super(message);
this.name = 'VueToolsError';
}
}
+1
View File
@@ -1 +1,2 @@
export * from './components';
export * from './error';