From 0425296e5bc95ab94556ab09700844b1222dc077 Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 23 Jul 2019 13:15:29 +0400 Subject: =?UTF-8?q?=D0=9A=D0=BE=D0=BB=D0=BB=D0=B1=D1=8D=D0=BA=D0=B8=20?= =?UTF-8?q?=D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D1=8B=20=D0=BD=D0=B0?= =?UTF-8?q?=20=D1=81=D0=BE=D0=B1=D1=8B=D1=82=D0=B8=D1=8F.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- day9/task5_vue/src/components/AddNewEntryButton.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'day9/task5_vue/src/components/AddNewEntryButton.vue') diff --git a/day9/task5_vue/src/components/AddNewEntryButton.vue b/day9/task5_vue/src/components/AddNewEntryButton.vue index 6b7e19b..f22da0f 100644 --- a/day9/task5_vue/src/components/AddNewEntryButton.vue +++ b/day9/task5_vue/src/components/AddNewEntryButton.vue @@ -13,7 +13,6 @@ export default { name: "AddNewEntryButton", - props: ['showFormCallback'], components: {EditFormBox}, data() { @@ -24,13 +23,13 @@ methods: { showForm() { - this.showFormCallback('create', { + this.$emit('show-form', { service_id: '', servtype: '', subtype: '', user_id: '', referrer_user_id: '', state: '', creation_date: '', creation_time: '', creation_request_sent_date: '', notified_about_expiration: '' - }) + }); } } } -- cgit v1.2.3