dialog component

This commit is contained in:
cookfront
2017-02-16 15:12:28 +08:00
parent 82bb27896e
commit 4c3cdd433b
15 changed files with 350 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
export default function(target, ...sources) {
for (let i = 1, j = sources.length; i < j; i++) {
let source = arguments[i] || {};
for (let i = 0; i < sources.length; i++) {
let source = sources[i] || {};
for (let prop in source) {
if (source.hasOwnProperty(prop)) {
let value = source[prop];