You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
296 B
Vue

<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>