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

前端 未结 16 3665
慢半拍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:54

    Had the same issue, found that the template component tags worked with . So, if your component is called mycomponent.component.ts:

    @Component({
      selector: 'my-app',
      template: `
        

    Hello {{name}}

    Something

    `,

提交回复
热议问题