0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Angularのコンポーネントを作成

Posted at

Angularのチュートリアルを参考にしています。

コンポーネントの作り方

コンポーネントを作成したいディレクトリの下で下記のコマンドを実行します。

ng generate component heroes

src/app/heroes/配下に下記のファイルが作成されます。

  • heroes.component.ts
  • heroes.component.spec.ts (これは触らない)
  • heroes.component.html
  • heroes.component.css

Serviceファイルの作り方

ng generate service heroes

component が service に変わっただけですね。

エラー

エラー文を記録しておくのを忘れてしまいました😭
解決方法としては、「--module app.module」を付けることでことなきを得ました。

ng generate component heroes --module app.module
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?