// В МФ по пути/имени с компанией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('/settings');this.$router.push({path:'/settings',query:{status:'new'},params:{userId:1}});this.$router.push({name:'settings',query:{status:'new'},params:{userId: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'}});