0
我正在使用Meteor-Dragula。讓我們說,我拖動一個容器的字符串hello
到#right
DOM元素。我如何訪問該字符串?說,把它推入一個字符串數組。如何使用Meteor-Dragula將容器的內容推送到數組中?
也許我在正確的軌道上這樣的事情?
x = [];
Template.dragulaTemplate.events({
"drop #right1": function(el) {
x.push(el);
}
});