Firebase Authentication의 주요 기능들을 통합한 Pinia storeFirebase Authentication의 주요 기능들을 Pinia store에 통합합니다.이 store는 Vue 3과 함께 작동하며,이메일/비밀번호 회원가입 및 로그인, 로그아웃,현재 로그인 상태 유지, 비밀번호 변경 및 재설정, 구글 로그인까지 모두 포함합니다.src/stores/authStore.js// src/stores/authStore.jsimport { defineStore } from 'pinia';import { ref, computed } from 'vue';import { useRouter } from 'vue-router';import { createUserWithEmailAndPassword,..