9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
import { reactive } from "vue";
|
|
import { Form, FormControl, FormObject } from "../helpers/form";
|
|
|
|
export const form: FormObject = reactive(
|
|
Form({
|
|
password: FormControl("", Required()),
|
|
}),
|
|
);
|