179 lines
7.2 KiB
Vue
179 lines
7.2 KiB
Vue
<template>
|
|
<DocSectionText label="Non-PrimeVue" :level="2" v-bind="$attrs">
|
|
<p>Form API is not strictly tied to PrimeVue components, providing a flexible way to manage validation and state for any native HTML elements, your own custom components or third-party libraries.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-center">
|
|
<Form :resolver @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
|
|
<FormField v-slot="$field" name="username" initialValue="" class="flex flex-col gap-1">
|
|
<input type="text" placeholder="Username" :class="[{ error: $field?.invalid }]" v-bind="$field.props" />
|
|
<Message v-if="$field?.invalid" severity="error" size="small" variant="simple">{{ $field.error?.message }}</Message>
|
|
</FormField>
|
|
<FormField v-slot="$field" name="password" initialValue="PrimeVue" class="flex flex-col gap-1">
|
|
<input v-model="$field.value" type="password" placeholder="Password" :class="[{ error: $field?.invalid }]" @input="$field.onInput" @blur="$field.onBlur" @change="$field.onChange" />
|
|
<Message v-if="$field?.invalid" severity="error" size="small" variant="simple">{{ $field.error?.message }}</Message>
|
|
</FormField>
|
|
<Button type="submit" severity="secondary" label="Submit" />
|
|
</Form>
|
|
</div>
|
|
<DocSectionCode :code="code" :dependencies="{ zod: '3.23.8' }" />
|
|
</template>
|
|
|
|
<script>
|
|
import { zodResolver } from '@primevue/forms/resolvers/zod';
|
|
import { z } from 'zod';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
resolver: zodResolver(
|
|
z.object({
|
|
username: z.string().min(1, { message: 'Username is required.' }),
|
|
password: z.string().min(1, { message: 'Password is required.' })
|
|
})
|
|
),
|
|
code: {
|
|
basic: `
|
|
<Form :resolver @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
|
|
<FormField v-slot="$field" name="username" initialValue="" class="flex flex-col gap-1">
|
|
<input type="text" placeholder="Username" :class="[{ error: $field?.invalid }]" v-bind="$field.props" />
|
|
<Message v-if="$field?.invalid" severity="error" size="small" variant="simple">{{ $field.error?.message }}</Message>
|
|
</FormField>
|
|
<FormField v-slot="$field" name="password" initialValue="PrimeVue" class="flex flex-col gap-1">
|
|
<input v-model="$field.value" type="password" placeholder="Password" :class="[{ error: $field?.invalid }]" @input="$field.onInput" @blur="$field.onBlur" @change="$field.onChange" />
|
|
<Message v-if="$field?.invalid" severity="error" size="small" variant="simple">{{ $field.error?.message }}</Message>
|
|
</FormField>
|
|
<Button type="submit" severity="secondary" label="Submit" />
|
|
</Form>
|
|
`,
|
|
options: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<Toast />
|
|
|
|
<Form :resolver @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
|
|
<FormField v-slot="$field" name="username" initialValue="" class="flex flex-col gap-1">
|
|
<input type="text" placeholder="Username" :class="[{ error: $field?.invalid }]" v-bind="$field.props" />
|
|
<Message v-if="$field?.invalid" severity="error" size="small" variant="simple">{{ $field.error?.message }}</Message>
|
|
</FormField>
|
|
<FormField v-slot="$field" name="password" initialValue="PrimeVue" class="flex flex-col gap-1">
|
|
<input v-model="$field.value" type="password" placeholder="Password" :class="[{ error: $field?.invalid }]" @input="$field.onInput" @blur="$field.onBlur" @change="$field.onChange" />
|
|
<Message v-if="$field?.invalid" severity="error" size="small" variant="simple">{{ $field.error?.message }}</Message>
|
|
</FormField>
|
|
<Button type="submit" severity="secondary" label="Submit" />
|
|
</Form>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { zodResolver } from '@primevue/forms/resolvers/zod';
|
|
import { z } from 'zod';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
resolver: zodResolver(
|
|
z.object({
|
|
username: z.string().min(1, { message: 'Username is required.' }),
|
|
password: z.string().min(1, { message: 'Password is required.' })
|
|
})
|
|
)
|
|
};
|
|
},
|
|
methods: {
|
|
onFormSubmit({ valid }) {
|
|
if (valid) {
|
|
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
|
}
|
|
}
|
|
}
|
|
};
|
|
<\/script>
|
|
<style scoped>
|
|
input {
|
|
width: 100%;
|
|
color: var(--p-inputtext-color);
|
|
background: var(--p-inputtext-background);
|
|
border: 1px solid var(--p-inputtext-border-color);
|
|
}
|
|
|
|
input.error {
|
|
border-color: var(--p-inputtext-invalid-border-color);
|
|
}
|
|
<\/style>
|
|
`,
|
|
composition: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<Form :resolver @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
|
|
<FormField v-slot="$field" name="username" initialValue="" class="flex flex-col gap-1">
|
|
<input type="text" placeholder="Username" :class="[{ error: $field?.invalid }]" v-bind="$field.props" />
|
|
<Message v-if="$field?.invalid" severity="error" size="small" variant="simple">{{ $field.error?.message }}</Message>
|
|
</FormField>
|
|
<FormField v-slot="$field" name="password" initialValue="PrimeVue" class="flex flex-col gap-1">
|
|
<input v-model="$field.value" type="password" placeholder="Password" :class="[{ error: $field?.invalid }]" @input="$field.onInput" @blur="$field.onBlur" @change="$field.onChange" />
|
|
<Message v-if="$field?.invalid" severity="error" size="small" variant="simple">{{ $field.error?.message }}</Message>
|
|
</FormField>
|
|
<Button type="submit" severity="secondary" label="Submit" />
|
|
</Form>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { reactive } from 'vue';
|
|
import { zodResolver } from '@primevue/forms/resolvers/zod';
|
|
import { z } from 'zod';
|
|
import { useToast } from 'primevue/usetoast';
|
|
|
|
const toast = useToast();
|
|
|
|
const resolver = zodResolver(
|
|
z.object({
|
|
username: z.string().min(1, { message: 'Username is required.' }),
|
|
password: z.string().min(1, { message: 'Password is required.' })
|
|
})
|
|
);
|
|
|
|
const onFormSubmit = ({ valid }) => {
|
|
if (valid) {
|
|
toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
|
}
|
|
};
|
|
<\/script>
|
|
<style scoped>
|
|
input {
|
|
width: 100%;
|
|
color: var(--p-inputtext-color);
|
|
background: var(--p-inputtext-background);
|
|
border: 1px solid var(--p-inputtext-border-color);
|
|
}
|
|
|
|
input.error {
|
|
border-color: var(--p-inputtext-invalid-border-color);
|
|
}
|
|
<\/style>
|
|
`
|
|
}
|
|
};
|
|
},
|
|
methods: {
|
|
onFormSubmit({ valid }) {
|
|
if (valid) {
|
|
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
input {
|
|
width: 100%;
|
|
color: var(--p-inputtext-color);
|
|
background: var(--p-inputtext-background);
|
|
border: 1px solid var(--p-inputtext-border-color);
|
|
}
|
|
|
|
input.error {
|
|
border-color: var(--p-inputtext-invalid-border-color);
|
|
}
|
|
</style>
|