0

アプリケーションに依存関係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ますか?

4

1 に答える 1