我正在处理一个带有 loginComponent 的示例项目,当我尝试添加 OnInit 时,我需要在我的类中实现 OnInit 我收到以下错误



这是我的代码

export class loginComponent implements OnInit{

 ngOnInit():all{

    }
}

如何解决这个问题

提前致谢

最佳答案

import { OnInit } from '@angular/core';

关于angular - 在实现过程中在 typescript 中找不到 OnInit,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42139698/

10-11 11:40