Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

加上拖拽之后报Cannot read property 'parentNode' of null #2145

Closed
q1998763 opened this issue Jan 12, 2016 · 1 comment
Closed

加上拖拽之后报Cannot read property 'parentNode' of null #2145

q1998763 opened this issue Jan 12, 2016 · 1 comment

Comments

@q1998763
Copy link

demo: https://jsfiddle.net/uedkx/2upo1bo4/1/

当从列表3拉到4时会报错。

@greennyreborn
Copy link

var sortable = Sortable.create(document.getElementById('list'), {
        onEnd: function(e) {
            var tmp = vm.arr[e.oldIndex]
            vm.arr[e.oldIndex] = vm.arr[e.newIndex]
            vm.arr[e.newIndex] = tmp
            console.log(vm.arr)
        }
    });

    var vm = new Vue({
        data: {
            arr: [1, 2, 3, 4]
        },
        el: '#app',
        methods: {
            add: function() {
                this.arr.push(1);
            }
        }
    })

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants