Reloading Entire window on Public Property Change

Is there any way to refresh a entire page on Property Change

Currently i am Doing this

protected $listeners = ['dateChanged' => 'checkFunction'];

public function checkFunction()
{
  return redirect()->route('landingPage',['currentDate' =>$this->currentDate]);
}

public function updated($name, $value)
 {
    if($name === 'currentDate'){
        $this->emit('dateChanged');
     }
  }