If '' is an Angular component, then verify that it is part of this module

前端 未结 16 3654
慢半拍i
慢半拍i 2020-12-07 14:09

I am new in Angular2. I have tried to create a component but showing an error.

This is the app.component.ts file.

import { Component } f         


        
16条回答
  •  星月不相逢
    2020-12-07 14:51

    Check your selector in your filename.component.ts

    Using the tag in various html files I would say

    
    

    Should be

    
    

    Example

    @Component({
      selector: 'app-my-first-component',
      templateUrl: './my-first-component.component.html',
      styleUrls: ['./my-first-component.component.scss']
    })
    

提交回复
热议问题