What is Nuxt?
Remix is a full stack web framework that lets you focus on the user interface and work back through web standards to deliver a fast, slick, and resilient user experience.Prerequisites
Before you begin, you’ll need to have a Formbox form. If you don’t have one yet, you can create a new form by following the steps in the Introduction guide. Once you have your form, make a note of the form’s endpoint url in the setup tab of your form page, as you’ll need it later.Creating a new Nuxt project
To get up and running quickly, we will follow the official Nuxt installation guide to create a new Nuxt project. In your terminal, run the following command:http://localhost:3000
. You should see a new Nuxt application running.

Adding your Formbox form to your Nuxt project
Now that we have a new Nuxt project set up, let’s add our Formbox form to it. For styling purposes, we’ll use Tailwind CSS. You can learn how to add Tailwind CSS to your project by following the Nuxt installation guide. Once you have Tailwind CSS set up, let’s add our form. Open up theapp.vue
file within the root of the root
directory and replace everything in the file with the following code block:
app.vue
action
attribute as shown in the code block above.
Save the file and navigate to http://localhost:3000
in your browser. You should see a form that you can fill out and submit.

