Ion Back Router Default-href not return correctly the specific page

Hello Sir, does someone have a better idea of how to point the default-href of the ion back router to be better?

Cuz I don’t know why I am using

<ion-back-button :default-href="{ name: 'home' }" />

not return correctly that page I want, like in another page return to the Home page like that. Please Help…

<ion-buttons slot="start">
     <ion-back-button defaultHref="/"></ion-back-button>
     or
     <ion-back-button :default-href="{name: 'Home'}"></ion-back-button>
</ion-buttons>

Hi Donpuerto.

<ion-back-button :default-href="{ name: 'home' }" />
with
<ion-back-button :default-href="{name: 'Home'}"></ion-back-button>
is the same.
This is the quick way to code if inside Component U r not mean to code anything else.
<ion-back-button :default-href="{ name: 'home' }" />
You can try it.