Vue.js Product Return Form Generator

Process product returns and exchanges

Back to Generator

Form Preview

Vue.js Code

<template>
  <div class="form-container">
    <form @submit.prevent="handleSubmit">
      <div class="form-group">
        <label for="name" class="required">Full Name</label>
        <input
          type="text"
          id="name"
          v-model="formData.name"
          required
        />
      </div>
      <div class="form-group">
        <label for="email" class="required">Email Address</label>
        <input
          type="email"
          id="email"
          v-model="formData.email"
          required
        />
      </div>
      <div class="form-group">
        <label for="orderNumber" class="required">Order Number</label>
        <input
          type="text"
          id="orderNumber"
          v-model="formData.orderNumber"
          required
        />
      </div>
      <div class="form-group">
        <label for="productName" class="required">Product Name</label>
        <input
          type="text"
          id="productName"
          v-model="formData.productName"
          required
        />
      </div>
      <div class="form-group">
        <label for="returnReason" class="required">Reason for Return</label>
        <div class="radio-group">
          <div class="radio-item">
            <input
              type="radio"
              id="returnReason-0"
              v-model="formData.returnReason"
              value="Wrong Item"
              required
            />
            <label for="returnReason-0">Wrong Item</label>
          </div>
          <div class="radio-item">
            <input
              type="radio"
              id="returnReason-1"
              v-model="formData.returnReason"
              value="Defective"
              
            />
            <label for="returnReason-1">Defective</label>
          </div>
          <div class="radio-item">
            <input
              type="radio"
              id="returnReason-2"
              v-model="formData.returnReason"
              value="Not as Described"
              
            />
            <label for="returnReason-2">Not as Described</label>
          </div>
          <div class="radio-item">
            <input
              type="radio"
              id="returnReason-3"
              v-model="formData.returnReason"
              value="Changed Mind"
              
            />
            <label for="returnReason-3">Changed Mind</label>
          </div>
          <div class="radio-item">
            <input
              type="radio"
              id="returnReason-4"
              v-model="formData.returnReason"
              value="Other"
              
            />
            <label for="returnReason-4">Other</label>
          </div>
        </div>
      </div>
      <div class="form-group">
        <label for="action" class="required">Preferred Action</label>
        <div class="radio-group">
          <div class="radio-item">
            <input
              type="radio"
              id="action-0"
              v-model="formData.action"
              value="Refund"
              required
            />
            <label for="action-0">Refund</label>
          </div>
          <div class="radio-item">
            <input
              type="radio"
              id="action-1"
              v-model="formData.action"
              value="Exchange"
              
            />
            <label for="action-1">Exchange</label>
          </div>
          <div class="radio-item">
            <input
              type="radio"
              id="action-2"
              v-model="formData.action"
              value="Store Credit"
              
            />
            <label for="action-2">Store Credit</label>
          </div>
        </div>
      </div>
      <div class="form-group">
        <label for="comments">Additional Comments</label>
        <textarea
          id="comments"
          v-model="formData.comments"
          
        ></textarea>
      </div>
      <div class="form-group">
        <button type="submit">Submit</button>
      </div>
    </form>
  </div>
</template>

<script>
export default {
  name: 'ProductReturnForm',
  data() {
    return {
      formData: {
        name: '',
        email: '',
        orderNumber: '',
        productName: '',
        returnReason: '',
        action: '',
        comments: '',
      }
    };
  },
  methods: {
    handleSubmit() {
      console.log('Form submitted with data:', this.formData);
      // You would typically send this data to an API here
      alert('Form submitted successfully!');
    }
  }
};
</script>

<style scoped>
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.required:after {
  content: " *";
  color: red;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}

textarea {
  height: 100px;
}

.checkbox-group, .radio-group {
  margin-bottom: 10px;
}

.checkbox-item, .radio-item {
  margin-bottom: 5px;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #45a049;
}
</style>

Installation

How to setup Vue.js Product Return form

  1. 1

    Sign up to parrotforms.com

    Create your first form API endpoint then copy your endpoint.

    Screenshot Placeholder
  2. 2

    Copy the example code

    Use the copy button above to copy the entire code snippet.

    Screenshot Placeholder
  3. 3

    Paste the code and update the endpoint

    Replace the form API endpoint with the one you got in step 1.

    Screenshot Placeholder
  4. 4

    Collect submissions

    View and manage all form submissions in your parrotForms dashboard.

    Screenshot Placeholder

Need more advanced forms?

Create a free parrotForms account to access more templates, save your forms, and collect submissions.

Create a Free Account