SPA(Single-page Application) の最大の特徴であるルーティングについて学びます。SPAのルーティングはURLに紐付いた画面を表示させる仕組みです。 SPA は以前のWebアプリケーションと比べ、レスポンスが高速でUI/UXに優れています。 ページの作成とルーティングの設定 はじめにルーティングに必要となるいくつかの画面を追加します。top 画面、issue 画面、wiki 画面は pages 配下として定義しています。 $ ng g component home $ ng g component pageNotFound $ ng g module pages --routing $ ng g component pages $ ng g component pages/top $ ng g component pages/issue $ ng g compone