Pinia를 사용한 사용자 인증(Store) 구현Pinia를 사용하여 사용자 인증(Store) 을 구현한 코드입니다.계정 만들기, 로그인, 로그아웃, 자동 로그인 기능을 포함하고 있습니다.📌 주요 기능✅ register(email, password, name) → 회원가입✅ login(email, password) → 로그인✅ logout() → 로그아웃✅ checkAuthState() → 자동 로그인 (onAuthStateChanged 사용)📌 Pinia 인증 Store (useAuthStore.js)import { defineStore } from "pinia";import { ref } from "vue";import { auth, createUserWithEmailAndPassword, sig..