From 7db636b01a2da61d08caae6f6c1623a3a1309e89 Mon Sep 17 00:00:00 2001 From: Timo Volkmann Date: Mon, 25 Mar 2019 19:22:48 +0100 Subject: [PATCH] some changes --- .gitignore | 5 +-- .idea/modules.xml | 10 +++++ frontend/.eslintrc.js | 2 +- frontend/quasar.conf.js | 1 - frontend/src/layouts/MyLayout.vue | 6 +-- frontend/src/pages/Dashboard.vue | 10 ----- frontend/src/pages/Index.vue | 54 ++++++++++++++++++++++ frontend/src/pages/Login.vue | 74 ++++++++++++++++--------------- frontend/src/pages/TestCaches.vue | 3 ++ 9 files changed, 110 insertions(+), 55 deletions(-) create mode 100644 .idea/modules.xml create mode 100644 frontend/src/pages/Index.vue diff --git a/.gitignore b/.gitignore index db2f45b..6c08a57 100644 --- a/.gitignore +++ b/.gitignore @@ -24,10 +24,7 @@ labswp_2019_sose_geocaching.iml # public folder src/main/resources/public/ -# .idea/ -# nicht notwendig. alle problematischen files sind draußen. -# wenns trotzdem noch probleme macht muss man die entsprechenden -# files noch mit "git rm --cached untracken. +.idea/ # Gradle diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..9db8a1d --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/frontend/.eslintrc.js b/frontend/.eslintrc.js index 6ef542c..c4e9e64 100644 --- a/frontend/.eslintrc.js +++ b/frontend/.eslintrc.js @@ -14,7 +14,7 @@ module.exports = { // consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules. extends: [ 'plugin:vue/essential', - '@vue/prettier' + // '@vue/prettier' ], // required to lint *.vue files diff --git a/frontend/quasar.conf.js b/frontend/quasar.conf.js index 1ffd38f..569ef43 100644 --- a/frontend/quasar.conf.js +++ b/frontend/quasar.conf.js @@ -47,7 +47,6 @@ module.exports = function (ctx) { 'QCardActions', 'QCheckbox', 'QSeparator', - 'QInput', 'QImg', 'QTabs', 'QTab', diff --git a/frontend/src/layouts/MyLayout.vue b/frontend/src/layouts/MyLayout.vue index 80c2afb..7dbfd97 100644 --- a/frontend/src/layouts/MyLayout.vue +++ b/frontend/src/layouts/MyLayout.vue @@ -1,7 +1,7 @@ diff --git a/frontend/src/pages/TestCaches.vue b/frontend/src/pages/TestCaches.vue index 71e251c..2f06321 100644 --- a/frontend/src/pages/TestCaches.vue +++ b/frontend/src/pages/TestCaches.vue @@ -23,6 +23,7 @@ + Hallo @@ -68,6 +69,7 @@ export default { }, created: function() { + console.log("created(): " + this.caches); this.fetchTodos(); }, @@ -75,6 +77,7 @@ export default { fetchTodos () { this.$axios.get('http://localhost:8080/allCaches') .then((response) => { + console.log("Caches: " + this.caches); this.caches = response.data; }) }