Merge pull request #927 from baiyaaaaa/master

fix node remove bug
pull/932/head
杨奕 2016-11-09 10:19:47 +08:00 committed by GitHub
commit 1e4b330d8e
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@
destroyed() { destroyed() {
if (this.$el) { if (this.$el) {
this.$el.remove(); this.$el.parentNode.removeChild(this.$el);
} }
}, },