Laravel と VueJs の連携

環境:

Laravel@8.42.1

vue@2.6.12

vue-router@3.5.1

 

App Structure

f:id:monteecristoo:20210601230733p:plain


/welcome

welcome component内でregister/login リクエス

結果が成功なら ’’ にリダイレクトするが、laravel blade template を切り替える必要があるのならば vue-router の $router.go, $router.psuh 等々ではサーバーにリクエストを送るリダイレクトにはならないので

  location.href = ''

でリダイレクト

 

axios.post('register', request).then(() => {

  location.href = ''

}).catch((err) => {

  console.log(err)

})

 

related article:

monteecristoo.hatenablog.com