Getting Started

Installation

Learn how to install and configure Nuxt Auto Form in your Nuxt application.

Setup

To easily test features of this module, use the Playground project. For best results, open it in a Chromium-based browser.

Add to a Nuxt project

Install the Nuxt UI package

pnpm add @norbiros/nuxt-auto-form

Install required dependencies

nuxt-auto-form strictly depends on @nuxt/ui and zod packages, so you need to install them as well.

pnpm add @nuxt/ui zod

Add the Nuxt Auto Form module in your nuxt.config.ts

nuxt.config.ts
export default defineNuxtConfig({
  modules: ['nuxt-auto-form']
})

Good job! Now you can start using Nuxt Auto Form in your application.

If you don’t have a Nuxt project yet, create one quickly at nuxt.new.