Add account page

This commit is contained in:
Kevin Thomas
2021-11-27 23:42:00 -08:00
parent fc29667c96
commit fc79362510
11 changed files with 247 additions and 25 deletions

15
src/views/AccountView.vue Normal file
View File

@@ -0,0 +1,15 @@
<template>
<Account />
</template>
<script>
import Account from '../components/Account'
export default {
name: 'AccountView',
components: {
Account
}
}
</script>