/test-formkit-tailwind

Source code for the course: Robust Vue.js Forms with FormKit

Primary LanguageTypeScript

Robust Vue.js Forms with FormKit

This repository contains the source code for the Robust Vue.js Forms with FormKit course.

Forms are the core of interactive and dynamic web pages. They accept user input and must respond to that input often in real time and in a variety of ways.

FormKit is a plugin for Vue.js that addresses common form needs like validation, de-bouncing, and schema support all with an intuitive and easy to use component API.

In this course, learn how to let FormKit handle the tedious parts of form development so you can focus on business requirements and shipping robust forms!

Checkout the course on vueschool.io

Project Based Off of the Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist

Development Server

Start the development server on http://localhost:3000

npm run dev

Production

Build the application for production:

npm run build

Locally preview production build:

npm run preview

Check out the deployment documentation for more information.