摘要: const BookingSchema = z.object({ roomType: z.string(), dueDate: z .string({ message: "invalid due date", }) .date('date format is wrong'), numberOfGue 阅读全文
posted @ 2024-11-19 15:50 Zhentiw 阅读(5) 评论(0) 推荐(0) 编辑
摘要: For component level authority controls, we need to find a common partten so that we can extract a common component to handle the permission control in 阅读全文
posted @ 2024-11-19 15:38 Zhentiw 阅读(2) 评论(0) 推荐(0) 编辑
摘要: export enum EffectFlags { /** * ReactiveEffect only */ ACTIVE = 1 << 0, RUNNING = 1 << 1, TRACKING = 1 << 2, NOTIFIED = 1 << 3, DIRTY = 1 << 4, ALLOW_ 阅读全文
posted @ 2024-11-19 02:51 Zhentiw 阅读(2) 评论(0) 推荐(0) 编辑