LoginSignup
1
0

More than 3 years have passed since last update.

[Angular] 「基本的なAngularアプリをはじめる」をやってみる(1)

Last updated at Posted at 2021-01-04

「基本的なAngularアプリをはじめる」をやってみる(1)

[Angular] 「基本的なAngularアプリをはじめる」をやってみる(準備)

昨日、上記の記事のようにチュートリアルのサンプルプロジェクトを生成しました。

サンプルプロジェクトを生成しますと、下図のように、
015a.png
product-listフォルダー、top-barフォルダーにそれぞれ css、html、ts、の3つにファイルができていることが分かります。

実行結果としてプレビュー画面には、下図のように表示されています。
014a.png

ちょっとだけ、テストしてみる

今日は、ちょっとだけテストしてみます。

product-list.component.ts
export class ProductListComponent {
  products = products;
  test_1 = '製品';

product-list.component.ts に test_1 = '製品'; を書き加えてみます。

product-list.component.html
<h2>Products</h2>
<h2>{{ test_1 }}</h2>

product-list.component.html に <h2>{{ test_1 }}</h2> を書き加えます。

016a.png

はい。test_1 の内容が表示されました!

次の記事 : [Angular] 「基本的なAngularアプリをはじめる」をやってみる(2)

1
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
1
0