Vuex 작업 및 구성 요소에서 경로 변경 사용자가 로그인 폼을 통해 내 앱에 정상적으로 로그인한 후.프로필이 있는지 확인하고 싶어요.그렇다면 뉴스 페이지로 보내고 싶습니다.설정이 없는 경우는, 「설정」페이지로 리다이렉트 합니다.Vuex를 사용하여 이 작업을 수행하는 방법 몇 가지 옵션이 있습니다. 1. 리다이렉트를 담당하는 컴포넌트(불편한 기분) Login.vue handleFormSubmit () { this.$store.dispatch('loginFormSubmit', formData) .then(() => { // This feels a bit gross this.$store.dispatch('getUserProfile') .then(() => this.$router.push('/news')) ...