From 8c1dd8199c14c2bb51d02a4efc962b566b481721 Mon Sep 17 00:00:00 2001 From: Abdelrahman Awad Date: Thu, 18 Oct 2018 19:49:34 +0200 Subject: [PATCH] fix: onSave handler in demo project closes #16 --- demo/App.vue | 12 ++++++++++++ demo/app.js | 6 ------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/demo/App.vue b/demo/App.vue index 44f6aa2..dca75a1 100644 --- a/demo/App.vue +++ b/demo/App.vue @@ -1,3 +1,15 @@ + + diff --git a/demo/app.js b/demo/app.js index 3f9d4b0..d81ebe9 100644 --- a/demo/app.js +++ b/demo/app.js @@ -48,11 +48,5 @@ Vue.use(Vuse, { new Vue({ el: '#app', - methods: { - onSave (vuse) { - vuse.export('preview'); - vuse.export('pwa'); - } - }, render: h => h(App) });