An error occurred while loading the file. Please try again.
  • Patrick Ade's avatar
    Implement authentication store using Pinia; create auth store with login,... · e6e9197f
    Patrick Ade authored
    Implement authentication store using Pinia; create auth store with login, logout, and user fetching functionalities.
    
    Update main entry point to reflect new store structure; change import path for auth store.
    
    Add TypeScript support for Vue components; create shims-vue.d.ts for .vue file declarations.
    
    Create Login and Register views with authentication logic; implement user login and registration forms with error handling.
    
    Refactor HomeView to utilize authentication store; display user information and logout functionality based on authentication state.
    e6e9197f
AboutView.vue 244 bytes
<template>
    <div class="about">
        <h1>This is an about page</h1>
    </div>
</template>

<style>
@media (min-width: 1024px) {
    .about {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
}
</style>