From 4db11c018d44b91c056c59114d068b5a81326d63 Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Fri, 14 Jun 2019 21:42:19 +0100 Subject: [PATCH] Tidied up --- src/components/pluginComponents/formComponents/JsonForm.vue | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/components/pluginComponents/formComponents/JsonForm.vue b/src/components/pluginComponents/formComponents/JsonForm.vue index dcd5e622..46f0fe8c 100644 --- a/src/components/pluginComponents/formComponents/JsonForm.vue +++ b/src/components/pluginComponents/formComponents/JsonForm.vue @@ -62,14 +62,8 @@ export default { } }, - created: function () { - // `this` points to the vm instance - console.log(this.schema) - }, - methods: { updateForm(fieldName, value) { - console.log(`${fieldName}: ${value}`) this.$set(this.formData, fieldName, value); this.$emit('input', this.formData) },