mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
16 lines
277 B
TypeScript
16 lines
277 B
TypeScript
export function refForm<T>(initValue: T) {
|
|
function jsonClone(value: T) {
|
|
return JSON.parse(JSON.stringify(value))
|
|
}
|
|
const target = ref<T>(initValue)
|
|
|
|
function setDefault() {
|
|
target.value = jsonClone(initValue)
|
|
}
|
|
|
|
return {
|
|
target,
|
|
setDefault,
|
|
}
|
|
}
|