From 7ec12189e8e2bf85b0e5097c9fbff1322f2e43e5 Mon Sep 17 00:00:00 2001 From: schreifuchs Date: Mon, 24 Feb 2025 11:53:47 +0100 Subject: [PATCH] update readme --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 0d2c15b..4aa40cf 100644 --- a/README.md +++ b/README.md @@ -38,3 +38,19 @@ to this in your browser, and you can call your Go code from devtools. To build a redistributable, production mode package, use `wails build`. +## Tricks: + +### Inputs for date objects +```svelte +
+ + { + // @ts-ignore + session.Start = new Date(e.target.value); + }} + required +/> +```