24 lines
385 B
TypeScript
24 lines
385 B
TypeScript
|
|
import {Component} from '@angular/core';
|
||
|
|
import {Router} from "@angular/router";
|
||
|
|
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-root',
|
||
|
|
templateUrl: './app.component.html',
|
||
|
|
styleUrls: ['./app.component.css']
|
||
|
|
})
|
||
|
|
export class AppComponent {
|
||
|
|
|
||
|
|
term: string = '';
|
||
|
|
|
||
|
|
constructor(private router: Router) {
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
onSubmit(): void {
|
||
|
|
this.router.navigate(['/u/' + this.term])
|
||
|
|
.then();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|