Merge pull request from lvqingan/2.0

修正table render的自定义组件中无法获取this.$store的问题
This commit is contained in:
Aresn 2017-05-10 09:02:32 +08:00 committed by GitHub
commit 0ce5e00df8

View file

@ -96,6 +96,9 @@
},
components: components
});
if ($parent.$store != undefined) {
component.$store = $parent.$store;
}
component.row = this.row;
component.column = this.column;