在一个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