Skip to content

Validation Form Helper Library for Inertia and Vue

Notifications You must be signed in to change notification settings

7nohe/inertia-vue-form

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Inertia Vue Form

Validation Form Helper Library for Inertia and Vue

Installation

$ npm install @inertia-vue-form/zod

Usage

<script setup lang="ts">
import { useZodForm } from '@inertia-vue-form/zod';
import { z } from 'zod';

const schema = z.object({
  name: z.string().max(10),
  email: z.string().email().max(255).optional(),
})

const form = useZodForm({
  name: '',
  email: '',
}, schema);

function submit() {
  form.post('http:https://api.example.com')
}
</script>

<template>
  <form @submit.prevent="submit">
    <label for="name">Name</label>
    <br>
    <input name="name" v-model="form.name" />
    <p v-show="form.errors.name" style="color: red;">{{ form.errors.name }}</p>
    <br>
    <label for="email">Email</label>
    <br>
    <input name="email" v-model="form.email" />
    <p v-show="form.errors.email" style="color: red;">{{ form.errors.email }}</p>
    <br>
    <button type="submit">Submit</button>
  </form>
</template>

This is a package that generates Zod schemas from Laravel FormRequests. This allows you to share your validation rules between your Laravel backend and your TypeScript frontend. You can directly use the generated code in Inertia Vue Form.

Development

Setup

$ pnpm install

Build

$ pnpm --filter=@inertia-vue-form/zod build

Debug

$ pnpm --filter=vue-ts run dev

License

MIT

About

Validation Form Helper Library for Inertia and Vue

Resources

Stars

Watchers

Forks

Packages

No packages published