add-form

Generate validated Vuetify forms for Vue 3 components.

Updated Apr 27, 2026
One-click install
npx skills add https://github.com/IntelliTect/IntelliPlugins --skill add-form
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: add-form
Source: https://github.com/IntelliTect/IntelliPlugins/tree/main/plugins/vuetify-components/skills/add-form
Command: npx skills add https://github.com/IntelliTect/IntelliPlugins --skill add-form

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Create and integrate validated Vuetify forms into Vue 3 components to ensure consistent user input, validation, and error handling across forms.

Core Features & Use Cases

  • Define fields with types (text, number, date, select, checkbox) and robust validation rules.
  • Configure submission handling (API calls, events, or navigation) and user feedback.
  • Use cases include create/edit forms, search/filter forms, and settings forms with validation in Vue 3 apps.

Quick Start

Create or update a Vue 3 component to include a validated Vuetify form with defined fields and submission handling.

Frequently Asked Questions about add-form

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add validated Vuetify forms to a Vue 3 component?

Vuetify forms in Vue 3 support text, number, date, select, and checkbox field types. You can enforce input constraints using either Vuetify's built-in validation rules or VeeValidate within your component setup.

How do I handle form submission and validation errors in Vue 3?

Form submission and error handling in Vue 3 involve configuring the form to trigger API calls, emit events, or handle navigation upon validation success, while displaying validation errors for invalid fields to ensure consistent user feedback.

What is the best way to create a search filter form in Vue 3 with Vuetify?

The best way to create a search filter form in Vue 3 with Vuetify is to define the filter fields with appropriate types and validation rules, then configure the submission logic to handle the search API calls or event triggers.

Do I need Vuetify installed to build validated forms in Vue 3?

You need the Vuetify library installed in your Vue 3 environment to build these validated forms, as the generated components rely on Vuetify's UI framework and built-in validation rules for field definitions and error handling.