opcion-pedido.component.ts 424 Bytes
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';

@Component({
  selector: 'app-opcion-pedido',
  templateUrl: './opcion-pedido.component.html',
  styleUrls: ['./opcion-pedido.component.scss']
})
export class OpcionPedidoComponent implements OnInit {

  constructor(
    private router: Router,
  ) { }

  ngOnInit() {
  }

  goTo(path) {
    this.router.navigate([path]);
  }

}