アプリケーションに依存関係Angular 7
をインストールしました:Tone.js
npm install tone
npm install @tonejs/ui
私はノートを演奏することができ、このフィドルtone-keyboard
で見た要素を使用してキーボードを表示したいと思います
私のsynth.component.html
ファイルには以下が含まれています:
<tone-demo autoplay>
<tone-keyboard octaves="3"></tone-keyboard>
</tone-demo>
私のsynth.component.ts
ファイルには以下が含まれています:
import { Component, OnInit } from '@angular/core';
import Tone from 'tone';
しかし、次のエラーが表示されます。
Error: : 'tone-keyboard' is not a known element:
ファイルに追加import
のステートメントを含める必要がありsynth.component.ts
ますか?