在vue2.0中 使用vue-sortable 报错,报错信息如下:
[Vue warn]: Error in directive sortable update hook: "Sortable: el
must be HTMLElement, and not [object Undefined]"
使用sortable的代码如下:
import Sortable from 'vue-sortable'
Vue.use(Sortable);
<div id="frame_layout" v-sortable>
<div class="frame_group_div">
1
</div>
<div class="frame_group_div">
2
</div>
<div class="frame_group_div">
3
</div>
</div>
github 上也是这样的用法,请问在vue 中如何使用vue-sortable?
这个vue-sortable不支持vue2.0
vue2.0 应该使用Vue-Draggable
github地址:https://github.com/SortableJS...