使用带有Angular 2的aframe

时间:2017-04-08 08:29:49

标签: angular aframe

我正在尝试在我的角度2项目中使用Aframe。

我在index.html中导入了库,但我仍然无法使用aframe指令,例如:

<a-scene>
    <a-box color="red"></a-box>
  </a-scene>

引发错误:

Template parse errors:
'a-box' is not a known element:
1. If 'a-box' is an Angular component, then verify that it is part of this module.

如何将这样的库导入我的angular 2项目并使用它的指令?

2 个答案:

答案 0 :(得分:2)

我修好了这个:

我尝试添加:

从'@ angular / core'导入{CUSTOM_ELEMENTS_SCHEMA};

到app.module.ts

然后我将它添加到NgModule架构:

@NgModule({   架构:[     CUSTOM_ELEMENTS_SCHEMA   ]})

将解决它。祝你好运!

答案 1 :(得分:0)

尝试将import {CUSTOM_ELEMENTS_SCHEMA} from '@angular/core';添加到a​​pp.module.ts