All right, enough setup—let's write some code! We will start with a very simple form so that our users can fill out their personal information. Nothing crazy, just baby steps.
We are going to add three fields to our form. A firstName input, a lastName input, and an email input. Finally, we will add a Submit button.
Remember back when we installed Bootstrap? This is where it comes out to shine. All of the classes that we are going to add to our markup will get magically styled by Bootstrap.
Make these changes to your App.vue file:
<template>
<div id="app" class="container py-4">
<div class="row">
<div class="col-12">
<form>
<div class="form-group">
<label>First Name:</label>
<input type="text...