You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*
|
|
|
|
|
* @Descripttion:
|
|
|
|
|
* @version:
|
|
|
|
|
* @Author: sueRimn
|
|
|
|
|
* @Date: 2020-09-25 08:48:50
|
|
|
|
|
* @LastEditors: sueRimn
|
|
|
|
|
* @LastEditTime: 2020-10-18 09:07:04
|
|
|
|
|
*/
|
|
|
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { ResetComponent} from '../../app/ui/reset/reset.component'
|
|
|
|
|
import { from } from 'rxjs';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const routes: Routes = [
|
|
|
|
|
//{ path: 'Reset', component:ResetComponent}
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [RouterModule.forChild(routes)],
|
|
|
|
|
exports: [RouterModule]
|
|
|
|
|
})
|
|
|
|
|
export class UiRoutingModule {}
|