Arno Kaimbacher
080c21126b
- add notification messages via notiwind.ts - add Project.ts - add new component TabelPersons.vue - add additional routes - npm updates
16 lines
399 B
TypeScript
16 lines
399 B
TypeScript
// notiwind.ts
|
|
import {
|
|
createNotifier,
|
|
NotificationGroup,
|
|
defineNotificationComponent,
|
|
} from "notiwind";
|
|
|
|
export type NotificationSchema = {
|
|
type: string;
|
|
title?: string;
|
|
text: string;
|
|
};
|
|
|
|
export const notify = createNotifier<NotificationSchema>();
|
|
export const Notification = defineNotificationComponent<NotificationSchema>();
|
|
export { NotificationGroup }; |