Add vue router

This commit is contained in:
Kevin Thomas
2021-07-21 16:55:08 -07:00
parent 413925131d
commit 5f120e12bc
10 changed files with 117 additions and 156 deletions

25
src/components/Login.vue Normal file
View File

@@ -0,0 +1,25 @@
<template>
<v-container>
<v-form v-model="valid">
<v-text-field
v-model="username"
label="Username"
required
/>
<v-text-field
v-model="password"
label="Password"
type="password"
required
/>
<v-btn
class="mr-4"
type="submit"
>
Submit
</v-btn>
</v-form>
</v-container>
</template>