From 4e2f3e364215dc304bf0ca1a64ec1b60bade9984 Mon Sep 17 00:00:00 2001 From: Nathan Cannon Date: Sun, 16 Sep 2018 20:39:47 +0100 Subject: [PATCH] Added vue-axios --- .gitignore | 74 ++++++++++++++++++++++++++++++++++++-- frontend/package-lock.json | 5 +++ frontend/package.json | 1 + 3 files changed, 78 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 693ced2..066e8b3 100644 --- a/.gitignore +++ b/.gitignore @@ -185,11 +185,81 @@ typings/ !.vscode/launch.json !.vscode/extensions.json +### Eclipse ### -# End of https://www.gitignore.io/api/java,node,intellij+all,visualstudiocode +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath +.recommenders + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# PyDev specific (Python IDE for Eclipse) +*.pydevproject + +# CDT-specific (C/C++ Development Tooling) +.cproject + +# CDT- autotools +.autotools + +# Java annotation processor (APT) +.factorypath + +# PDT-specific (PHP Development Tools) +.buildpath + +# sbteclipse plugin +.target + +# Tern plugin +.tern-project + +# TeXlipse plugin +.texlipse + +# STS (Spring Tool Suite) +.springBeans + +# Code Recommenders +.recommenders/ + +# Annotation Processing +.apt_generated/ + +# Scala IDE specific (Scala & Java development for Eclipse) +.cache-main +.scala_dependencies +.worksheet + +### Eclipse Patch ### +# Eclipse Core +.project + +# JDT-specific (Eclipse Java Development Tools) +.classpath + +# Annotation Processing +.apt_generated + +.sts4-cache/ + +# End of https://www.gitignore.io/api/java,node,intellij+all,visualstudiocode,eclipse backend/src/main/resources/assets frontend/node !maven-wrapper.jar dependency-reduced-pom.xml -*.db \ No newline at end of file +*.db +target/ \ No newline at end of file diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 45da929..a9272b8 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -14362,6 +14362,11 @@ "resolved": "https://registry.npmjs.org/vue/-/vue-2.5.17.tgz", "integrity": "sha512-mFbcWoDIJi0w0Za4emyLiW72Jae0yjANHbCVquMKijcavBGypqlF7zHRgMa5k4sesdv7hv2rB4JPdZfR+TPfhQ==" }, + "vue-axios": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/vue-axios/-/vue-axios-2.1.3.tgz", + "integrity": "sha512-F4njDY6yqETynPh4iA/x3ohHuL6eNp4Jnn30VU//L7mrq3x7PwaHAoKrT++XjbKLjjNOZevTAGNyYXrdYEC90A==" + }, "vue-eslint-parser": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz", diff --git a/frontend/package.json b/frontend/package.json index ddb174b..51f3bb4 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -11,6 +11,7 @@ "dependencies": { "bootstrap-vue": "^2.0.0-rc.11", "vue": "^2.5.17", + "vue-axios": "^2.1.3", "vue-router": "^3.0.1", "vuex": "^3.0.1" },