{"version":3,"sources":["webpack:///./src/components/Latest.vue?9482","webpack:///./src/components/Latest.vue?af32","webpack:///./src/components/Latest.vue?cb80","webpack:///./src/components/Latest.vue"],"names":["render","_vm","this","_h","$createElement","_c","_self","staticClass","attrs","title","on","click","GoBack","pack","icon","GoUp","key","$route","fullPath","staticRenderFns","Latestvue_type_script_lang_ts_Club","Object","vue_property_decorator","GlobalMixin","[object Object]","site","isOpen","$router","go","push","params","name","newVal","tslib_es6","immediate","deep","mixins","components","ClubTopList","Promise","all","__webpack_require__","e","then","bind","Latestvue_type_script_lang_ts_","components_Latestvue_type_script_lang_ts_","component","componentNormalizer","__webpack_exports__"],"mappings":"yHAAA,IAAAA,EAAA,WAA0B,IAAAC,EAAAC,KAAaC,EAAAF,EAAAG,eAA0BC,EAAAJ,EAAAK,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAiBE,YAAA,SAAmBF,EAAA,OAAYE,YAAA,oBAA8BF,EAAA,OAAYE,YAAA,eAAyBF,EAAA,UAAeE,YAAA,iBAAAC,OAAoCC,MAAA,YAAmBC,IAAKC,MAAAV,EAAAW,UAAoBP,EAAA,UAAeE,YAAA,WAAAC,OAA8BK,KAAA,MAAAC,KAAA,iBAAkC,GAAAT,EAAA,UAAmBE,YAAA,sBAAAC,OAAyCC,MAAA,qBAA4BC,IAAKC,MAAAV,EAAAc,QAAkBV,EAAA,UAAeE,YAAA,WAAAC,OAA8BK,KAAA,MAAAC,KAAA,eAAgC,KAAAT,EAAA,OAAkBE,YAAA,gBAA0BF,EAAA,UAAeE,YAAA,iBAAAC,OAAoCC,MAAA,iDAAwDC,IAAKC,MAAAV,EAAAc,QAAkBV,EAAA,UAAeE,YAAA,WAAAC,OAA8BK,KAAA,MAAAC,KAAA,aAA8B,OAAAT,EAAA,eAA4BW,IAAAf,EAAAgB,OAAAC,YAAwB,IACn2BC,yCCqCA,IAAqBC,gBAAaC,OAAAC,EAAA,KAAAD,CAAOE,EAAA,OAAzCC,kCAGItB,KAAAuB,KAAe,GACfvB,KAAAwB,QAAkB,EAEXF,SACHtB,KAAKyB,QAAQC,IAAI,GAGdJ,OACHtB,KAAKyB,QAAQE,KAAK,UAGtBL,UACItB,KAAKuB,KAAOvB,KAAKe,OAAOa,OAAOC,KAInCP,YAAYQ,GACR9B,KAAKuB,KAAOvB,KAAKe,OAAOa,OAAOC,OAnB3BV,OAAAY,EAAA,KAAAZ,EAAPA,OAAAC,EAAA,KAAAD,8BAkBDA,OAAAY,EAAA,KAAAZ,EADCA,OAAAC,EAAA,KAAAD,CAAM,UAAYa,WAAW,EAAMC,MAAM,qCAlBzBf,EAAIC,OAAAY,EAAA,KAAAZ,EANxBA,OAAAC,EAAA,KAAAD,EACGe,QAASb,EAAA,MACTc,YACIC,YAAa,IAAMC,QAAAC,KAAAC,EAAAC,EAAA,kBAAAD,EAAAC,EAAA,oBAAAC,KAAAF,EAAAG,KAAA,kBAGNxB,GAAA,IAAAyB,EAAA,ECtC+TC,EAAA,cCOpVC,EAAgB1B,OAAA2B,EAAA,KAAA3B,CACdyB,EACA9C,EACAmB,GACF,EACA,KACA,WACA,MAIe8B,EAAA,WAAAF","file":"js/chunk-2d0b37b1.c2d2e024.js","sourcesContent":["var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"club\"},[_c('div',{staticClass:\"level is-mobile\"},[_c('div',{staticClass:\"level-left\"},[_c('button',{staticClass:\"button is-link\",attrs:{\"title\":\"Til baka\"},on:{\"click\":_vm.GoBack}},[_c('b-icon',{staticClass:\"is-large\",attrs:{\"pack\":\"fas\",\"icon\":\"arrow-left\"}})],1),_c('button',{staticClass:\"button is-link ml-1\",attrs:{\"title\":\"Fara á félagasíðu\"},on:{\"click\":_vm.GoUp}},[_c('b-icon',{staticClass:\"is-large\",attrs:{\"pack\":\"fas\",\"icon\":\"arrow-up\"}})],1)]),_c('div',{staticClass:\"level-right\"},[_c('button',{staticClass:\"button is-link\",attrs:{\"title\":\"Setja upp Fullscreen sýn fyrir stöðu eða spil\"},on:{\"click\":_vm.GoUp}},[_c('b-icon',{staticClass:\"is-large\",attrs:{\"pack\":\"fas\",\"icon\":\"expand\"}})],1)])]),_c('router-view',{key:_vm.$route.fullPath})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\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 http from \"@/services/http\";\nimport { Component, Prop, Mixins, Watch } from 'vue-property-decorator';\nimport { GlobalMixin } from '@/components/global/GlobalMixin';\n\n@Component({\n mixins: [GlobalMixin],\n components: {\n ClubTopList: () => import('../components/partial/ClubToplist.vue')\n }\n})\nexport default class Club extends Mixins(GlobalMixin) {\n @Prop() private msg!: string;\n\n site: string = \"\"\n isOpen: boolean = false;\n\n public GoBack(): void {\n this.$router.go(-1);\n }\n\n public GoUp(): void {\n this.$router.push(\"/clubs\");\n }\n\n created(): any {\n this.site = this.$route.params.name;\n }\n\n @Watch('$route', { immediate: true, deep: true })\n onUrlChange(newVal: any) {\n this.site = this.$route.params.name;\n }\n}\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/ts-loader/index.js??ref--12-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Latest.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/ts-loader/index.js??ref--12-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Latest.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./Latest.vue?vue&type=template&id=e7aad9c8&scoped=true&\"\nimport script from \"./Latest.vue?vue&type=script&lang=ts&\"\nexport * from \"./Latest.vue?vue&type=script&lang=ts&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"e7aad9c8\",\n null\n \n)\n\nexport default component.exports"],"sourceRoot":""}