Prerequisites

To get the most out of this guide, you’ll need to:

1. Create a Vue.js project

pnpm create vue@latest formizee-vue-example

2. Update the main page

Update the file under src/App.vue with the next code, then add your Endpoint URL.

App.vue
<template>
  <form method="post" action="<your-endpoint-url>">
    <label for="name">
      Name
      <input id="name" autoComplete="name" name="name" />
    </label>
    <label for="email">
      Email
      <input id="email" autoComplete="email" name="email" />
    </label>
    <button>Submit</button>
  </form>
</template>

3. Run in local

pnpm run dev

4. Try it yourself

Formizee Vue.js Example

See the full source code