131 lines
4.0 KiB
Vue
131 lines
4.0 KiB
Vue
|
<template>
|
||
|
<DocSectionText v-bind="$attrs">
|
||
|
<p>Editor can be used with the <NuxtLink to="/forms">PrimeVue Forms</NuxtLink> library.</p>
|
||
|
</DocSectionText>
|
||
|
<div class="card">
|
||
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4">
|
||
|
<div class="flex flex-col gap-2">
|
||
|
<Editor name="editor" editorStyle="height: 320px" />
|
||
|
<Message v-if="$form.editor?.invalid" severity="error">{{ $form.editor.error?.message }}</Message>
|
||
|
</div>
|
||
|
<Button type="submit" severity="secondary" label="Submit" />
|
||
|
</Form>
|
||
|
</div>
|
||
|
<DocSectionCode :code="code" :dependencies="{ zod: '3.23.8' }" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { zodResolver } from '@primevue/form/resolvers';
|
||
|
import { z } from 'zod';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
initialValues: {
|
||
|
editor: ''
|
||
|
},
|
||
|
resolver: zodResolver(
|
||
|
z.object({
|
||
|
editor: z.string().min(1, { message: 'Editor is required.' })
|
||
|
})
|
||
|
),
|
||
|
code: {
|
||
|
basic: `
|
||
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4">
|
||
|
<div class="flex flex-col gap-2">
|
||
|
<Editor name="editor" editorStyle="height: 320px" />
|
||
|
<Message v-if="$form.editor?.invalid" severity="error">{{ $form.editor.error?.message }}</Message>
|
||
|
</div>
|
||
|
<Button type="submit" severity="secondary" label="Submit" />
|
||
|
</Form>
|
||
|
`,
|
||
|
options: `
|
||
|
<template>
|
||
|
<div class="card">
|
||
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4">
|
||
|
<div class="flex flex-col gap-2">
|
||
|
<Editor name="editor" editorStyle="height: 320px" />
|
||
|
<Message v-if="$form.editor?.invalid" severity="error">{{ $form.editor.error?.message }}</Message>
|
||
|
</div>
|
||
|
<Button type="submit" severity="secondary" label="Submit" />
|
||
|
</Form>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { zodResolver } from '@primevue/form/resolvers';
|
||
|
import { z } from 'zod';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
initialValues: {
|
||
|
editor: ''
|
||
|
},
|
||
|
resolver: zodResolver(
|
||
|
z.object({
|
||
|
editor: z.string().min(1, { message: 'Editor is required.' })
|
||
|
})
|
||
|
)
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
onFormSubmit({ valid }) {
|
||
|
if (valid) {
|
||
|
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
<\/script>
|
||
|
|
||
|
`,
|
||
|
composition: `
|
||
|
<template>
|
||
|
<div class="card">
|
||
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4">
|
||
|
<div class="flex flex-col gap-2">
|
||
|
<Editor name="editor" editorStyle="height: 320px" />
|
||
|
<Message v-if="$form.editor?.invalid" severity="error">{{ $form.editor.error?.message }}</Message>
|
||
|
</div>
|
||
|
<Button type="submit" severity="secondary" label="Submit" />
|
||
|
</Form>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref } from 'vue';
|
||
|
import { zodResolver } from '@primevue/form/resolvers';
|
||
|
import { useToast } from "primevue/usetoast";
|
||
|
import { z } from 'zod';
|
||
|
|
||
|
const toast = useToast();
|
||
|
const initialValues = ref({
|
||
|
editor: '
|
||
|
});
|
||
|
const resolver = ref(zodResolver(
|
||
|
z.object({
|
||
|
editor: z.string().min(1, { message: 'Editor is required.' })
|
||
|
})
|
||
|
));
|
||
|
|
||
|
const onFormSubmit = ({ valid }) => {
|
||
|
if (valid) {
|
||
|
toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
||
|
}
|
||
|
};
|
||
|
<\/script>
|
||
|
`
|
||
|
}
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
onFormSubmit({ valid }) {
|
||
|
if (valid) {
|
||
|
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|