我一直在尝试为ngx-admin主题(Nebular)创建自定义登录名。首先,我尝试使用NBAuth组件,并成功使用了它。但是,当我尝试使用另一个自定义组件和服务来实现相同功能时,代码以某种方式中断了,我一直在寻找微调器。
app.routing.module.ts
import { VAuthComponent } from './vauth/vauth.component';
import { LoginComponent } from './vauth/login/login.component';
import { RegisterComponent } from './vauth/register/register.component';
这是我的路
{ path: '', redirectTo: 'vauth/login', pathMatch: 'full' },
{ path: '**', redirectTo: 'pages' },
我有一项使用的服务
createUserWithEmailAndPassword
& signInWithEmailAndPassword