// По пути/имени хостаthis.$goToHost('/cabinet');this.$goToHost({path:'/cabinet',query:{tab:'settings'}});this.$goToHost({name:'cabinet',query:{tab:'settings'},params:{role:'admin'}});// По имени роута хостаthis.$goToHostRoute('cabinet');this.$goToHostRoute('mfс',{companyId:1,service:'trade'});this.$goToHostRoute('mf',{service:'trade'});this.$goToHostRoute('admin',{status:'pending'},{section:'users'});// В другой МФ по пути/имени с компаниейthis.$goToService('trade','/invoices');this.$goToService('trade',{path:'/invoices',query:{status:'pending'},params:{invoiceId:1}});// В другой МФ по пути/имени без компанииthis.$goToMf('agartu','/industries');this.$goToMf('agartu',{path:'/industries',query:{id:123},params:{status:'active'}});// По пути/имени МФthis.$router.push('/invoices');this.$router.push({path:'/invoices',query:{status:'pending'},params:{invoiceId:1}});this.$router.push({name:'trade-invoices',query:{status:'pending'},params:{invoiceId:1}});// ВНИМАНИЕ! Так работать не будет!this.$goToService('trade',{name:'trade-invoices',query:{status:'pending'},params:{invoiceId:1}});this.$goToMf('agartu',{name:'agartu-industries',query:{id:123},params:{status:'active'}});