Added vue-axios

This commit is contained in:
neviyn 2018-09-16 20:39:47 +01:00
parent 2e1a0ace06
commit 4e2f3e3642
3 changed files with 78 additions and 2 deletions

72
.gitignore vendored
View File

@ -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
target/

View File

@ -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",

View File

@ -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"
},