From 454fa0ea157d0b1bf9b30e1cb61742a4786c48b4 Mon Sep 17 00:00:00 2001 From: Icebob Date: Sat, 31 Dec 2016 14:24:32 +0100 Subject: [PATCH] remove console.log --- src/formGenerator.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/formGenerator.vue b/src/formGenerator.vue index f7c2b730..8465c76a 100644 --- a/src/formGenerator.vue +++ b/src/formGenerator.vue @@ -193,7 +193,7 @@ div }); }, modelUpdated(newVal, schema){ - console.log("a child model has updated", newVal, schema); + // console.log("a child model has updated", newVal, schema); this.model[schema] = newVal; this.$emit("model-updated", this.model[schema], schema); },