我应该为 ember-cli-jstree 调用几个插件的方式存在小问题




正如标题所说,我有一个小问题。我不知道如何调用 ember-cli-jstree 的多个插件。现在,我有那个

export default Ember.Component.extend({
"plugins" : "dnd",
data: 
[...],
});

在这里,我可以使用插件拖放,但是如果我想使用几个插件,我应该怎么写呢?
我已经尝试过:

"plugins" : "dnd", "type",
"plugins" : {"dnd", "type"},
"plugins" : ["dnd", "type"],
"plugins" : "dnd" + "type",

也许我很笨什么的,但我想不通。

我刚刚找到答案,你必须这样写:

export default Ember.Component.extend({
"plugins" : "dnd, types",
data: 
[...],
});

相关内容

  • 没有找到相关文章

最新更新