[Vuejs]-Back button doesn't detect created() on vuejs

0👍

Your component is created only once, so it will not call again after redirect. You can try add :key on your <router-view>

<router-view :key="$route.fullPath">

Leave a comment