add change password component

This commit is contained in:
zhiqiang feng
2022-09-05 16:18:38 +08:00
parent 7fb2f69edc
commit bf00299295
8 changed files with 344 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { ChpwComponent } from './chpw.component'
const loginRoutes: Routes = [
{
path: '',
component: ChpwComponent,
data: { preload: false, reuse: false }
}
]
@NgModule({
imports: [
RouterModule.forChild(loginRoutes)
],
exports: [RouterModule]
})
export class ChpwRoutingModule { }