Amazon cognito 및 Vue.js를 사용하여 사용자가 인증될 때까지 mounted()에서 앱을 차단합니다. 다음 코드로 Vue.js 앱에서 Amazon Cognito를 사용하여 사용자를 인증합니다. export default new Vue({ mounted() { store.dispatch('authenticateUser', { email: 'username', password: 'password' }).then(() => { if (store.state.cognito.authenticated) { // Add authentication token to each request axios.interceptors.request.use(async config => { const response = a..