我试图将拖放添加到我的 ionic 2 应用程序中。但不能让它工作。
这是我到目前为止所做的:
npm install ng2-dragula dragula --save
然后在我的页面中:
@Component({
templateUrl: 'build/pages/dragtest/dragtest.html',
directives: [Dragula],
viewProviders: [DragulaService],
})
export class DragtestPage {
constructor(private nav: NavController) {
}
}
但是当我添加 [dragula] 标签时,出现错误:无法绑定“dragula”,因为它不是已知的原生属性。
有没有人让它与 ionic 2 一起使用,有没有例子?