This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/.cache/vue-loader/8c2ef261a70c04a2cbe2801d45809842.json

1 line
5.5 KiB
JSON
Raw Normal View History

2019-08-11 18:48:02 +00:00
{"remainingRequest":"/home/soeren/dev/keksaccountgui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/soeren/dev/keksaccountgui/src/views/Startpage.vue?vue&type=script&lang=js&","dependencies":[{"path":"/home/soeren/dev/keksaccountgui/src/views/Startpage.vue","mtime":1564132387507},{"path":"/home/soeren/dev/keksaccountgui/node_modules/cache-loader/dist/cjs.js","mtime":499162500000},{"path":"/home/soeren/dev/keksaccountgui/node_modules/babel-loader/lib/index.js","mtime":499162500000},{"path":"/home/soeren/dev/keksaccountgui/node_modules/vuetify-loader/lib/loader.js","mtime":1564062719000},{"path":"/home/soeren/dev/keksaccountgui/node_modules/cache-loader/dist/cjs.js","mtime":499162500000},{"path":"/home/soeren/dev/keksaccountgui/node_modules/vue-loader/lib/index.js","mtime":499162500000}],"contextDependencies":[],"result":["//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\nimport AppService from '../services/Apps'\nexport default {\n data () {\n return {\n nameBig: '',\n nameSmall: '',\n slogen: '',\n menu: [\n { icon: 'home', title: 'Login' },\n { icon: 'info', title: 'Invited' },\n { icon: 'warning', title: 'Register' }\n ],\n apps: []\n }\n },\n methods: {\n 'getStartpageApps': function () {\n AppService.getStartPageApps().then((res) => {\n this.apps = res.data.data;\n });\n },\n 'getImageUrl' : function (id) {\n return AppService.getAppImage(id);\n },\n },\n mounted: function() {\n this.nameBig = this.$store.getters.getSettingValue(\"name_big\");\n this.nameSmall = this.$store.getters.getSettingValue(\"name_small\");\n this.slogen = this.$store.getters.getSettingValue(\"name_slogen\");\n this.getStartpageApps();\n }\n }\n",{"version":3,"sources":["Startpage.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqDA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"Startpage.vue","sourceRoot":"src/views","sourcesContent":["<template>\n <div style=\"\">\n <div class=\"headerStartpage\">\n <h1>{{ nameBig }}<span class=\"small\">{{ nameSmall }}</span></h1>\n <h2>{{ slogen }}</h2>\n </div>\n <v-container grid-list-md>\n <v-layout row wrap>\n <v-flex md12>\n <h1>Services</h1>\n <p>Mit deinem KeksAccount Username kannst du dich u.a. bei folgenden Servicen einloggen und diese nutzten. </p>\n </v-flex>\n\n </v-layout>\n <v-layout row wrap>\n <v-flex md4 xs12 text-xs-center v-for=\"(item, index) in apps\">\n <v-card>\n <v-layout>\n <v-flex xs5>\n <v-img\n :src=\"getImageUrl(item.id)\"\n height=\"125px\"\n contain\n ></v-img>\n </v-flex>\n <v-flex xs7>\n <v-card-title primary-title>\n <div>\n <div class=\"headline\">{{ item.name }}</div>\n <div>{{ item.description }}</div>\n </div>\n </v-card-title>\n </v-flex>\n </v-layout>\n <v-divider light></v-divider>\n <v-card-actions class=\"pa-3\">\n\n <v-spacer></v-spacer>\n <v-btn icon>\n <v-icon @click=\"navigateToApp(item)\">input</v-icon>\n </v-btn>\n </v-card-actions>\n </v-card>\n </v-flex>\n </v-layout>\n </v-container>\n\n\n </div>\n\n</template>\n\n<script>\n import AppService from '../services/Apps'\n export default {\n data () {\n return {\n nameBig: '',\n nameSmall: '',\n slogen: '',\n menu: [\n { icon: 'home', title: 'Login' },\n { icon: 'info'