You can setup a watcher on the $route in your component. It observes for route changes and when changed ,sets the message property.
$route
watch:{ $route (to, from){ this.message = 'Welcome'; } }