wip(Login): Login developing

This commit is contained in:
kailong321200875
2022-01-03 18:01:43 +08:00
parent 3810b8c3b2
commit 4d52f7bf58
21 changed files with 1798 additions and 52 deletions

View File

@@ -0,0 +1,18 @@
<script setup lang="ts">
import { Form } from '@/components/Form'
const schema: FormSchema[] = [
{
field: 'username',
component: 'Input'
},
{
field: 'password',
component: 'InputPassword'
}
]
</script>
<template>
<Form :schema="schema" :label-width="0" />
</template>