From 56425c5c5e2c39e7b04bbc02afb580b2b9c3849d Mon Sep 17 00:00:00 2001 From: Johannes Zillmann Date: Tue, 3 Jan 2017 22:46:51 +0100 Subject: [PATCH] integrate store + simple parsing --- package.json | 4 +- src/App.vue | 14 +++++-- src/components/Dropzone.vue | 79 ++++++++++++++++++++++++++++--------- src/components/Hello.vue | 26 +++++------- src/store.js | 14 +++++++ 5 files changed, 98 insertions(+), 39 deletions(-) create mode 100644 src/store.js diff --git a/package.json b/package.json index cbe0354..5257f0d 100644 --- a/package.json +++ b/package.json @@ -19,8 +19,10 @@ "url": "https://github.com/jzillmann/pdf-to-markdown" }, "dependencies": { + "keen-ui": "^0.8.9", "pdfjs-dist": "^1.6.317", - "vue": "^2.0.5" + "vue": "^2.0.5", + "vue-material": "^0.3.3" }, "devDependencies": { "babel-core": "^6.18.2", diff --git a/src/App.vue b/src/App.vue index ba99874..936a0f1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,18 +1,26 @@