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
Look at the Nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoist
Start the development server on http://localhost:3000
npm run dev
Build the application for production:
npm run build
Locally preview production build:
npm run preview
Check out the deployment documentation for more information.