chore(FormGroup): simplify bindings between input and form group p… (#704)

Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
Romain Hamel
2023-09-21 23:22:55 +02:00
committed by GitHub
parent a94782d94b
commit 46879dc1b7
14 changed files with 81 additions and 65 deletions

5
src/runtime/utils/uid.ts Normal file
View File

@@ -0,0 +1,5 @@
let _id = 0
export function uid () {
return `nuid-${_id++}`
}