From 95c737c88f0e31e34f6491619d66d1346ab9c3e5 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 30 Mar 2019 08:17:38 +0000 Subject: [PATCH] Add api-client.js --- src/api-client.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/api-client.js diff --git a/src/api-client.js b/src/api-client.js new file mode 100644 index 0000000..11e1a6a --- /dev/null +++ b/src/api-client.js @@ -0,0 +1,9 @@ +const data = require('@/data').default + +export default { + methods: { + getApplications () { + return data.applications + } + } +}