Notifications
Clear all
BugOverflow
1
Posty
1
Users
0
Reactions
457
Widok
0
26/05/2023 12:07 am
Topic starter
how to fix it
1 Answer
0
26/05/2023 12:07 am
Topic starter
possible approach is to add
:key="$route.path"
example:
<router-view :key="$route.path"></router-view>
and another approach using methon @click=""
async openNewSentencePage() {
await this.$router.push({path: "/sentences/new"});
this.$router.go(0)
}
This post was modified 2 lata temu 2 times by mrmucha