如何在打字稿中导入`block-ui`,`spectrum-colorpicker`,`sass.js`

时间:2016-03-08 03:09:32

标签: typescript angular

我在block-ui项目中使用了spectrum-colorpickersass.jsangular2 + typescript ...的一些插件。

现在我将它们加载到index.html文件中。但我想在我需要使用时导入它们并加载。我尝试使用import * as [Name] form '[plugin]'import {default as [Name]} from '[plugin]'进行导入。

你能帮帮我,我怎样才能在我的项目中导入它们?谢谢,

1 个答案:

答案 0 :(得分:1)

  

现在我将它们加载到index.html文件

您无法在浏览器中使用import * from样式ES6导入语法 natively 。将代码移动到main.ts然后加载该文件(例如,如果使用systemjs System.import等)。