{"version":3,"sources":["webpack:///./src/layouts/home/View.vue?182d","webpack:///src/layouts/home/View.vue","webpack:///./src/layouts/home/View.vue?a7ef","webpack:///../../../src/components/VMain/VMain.ts","webpack:///../../../src/components/VContent/VContent.ts","webpack:///./src/layouts/home/View.vue","webpack:///../../../src/mixins/ssr-bootable/index.ts"],"names":["_vm","this","_h","$createElement","_c","_self","attrs","key","store","state","language","staticRenderFns","name","props","tag","type","default","computed","styles","$vuetify","left","paddingTop","top","paddingRight","paddingBottom","footer","paddingLeft","render","data","staticClass","style","ref","h","$slots","created","node","component","VContent","VFadeTransition","isBooted","mounted","window"],"mappings":"8IAAA,IAAI,EAAS,WAAa,IAAIA,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,YAAY,CAACA,EAAG,oBAAoB,CAACE,MAAM,CAAC,KAAO,WAAW,CAACF,EAAG,cAAc,CAACG,IAAIP,EAAIQ,MAAMC,MAAMC,YAAY,IAAI,IACpNC,EAAkB,G,YCStB,GACE,KAAF,WACE,KAAF,WACI,MAAJ,CACM,MAAN,UCd6V,I,yDCU9U,gBAAmB,CAChCC,KADgC,SAGhCC,MAAO,CACLC,IAAK,CACHC,KADG,OAEHC,QAAS,SAIbC,SAAU,CACRC,OADQ,WACF,MAGAjB,KAAKkB,SAFT,YAAM,EADF,EACE,MADF,EACE,MADF,EACE,QADF,EACE,SADF,EACE,cADF,EACE,OAC0CC,EAF5C,EAE4CA,KAGhD,MAAO,CACLC,WAAY,GAAF,OAAKC,EADV,EACK,MACVC,aAAc,GAAF,OAFP,EAEO,MACZC,cAAe,GAAF,OAAKC,EAAA,EAHb,EAGQ,MACbC,YAAa,GAAF,OAAKN,EAAL,SAKjBO,OAzBgC,SAyB1B,GACJ,IAAMC,EAAO,CACXC,YADW,SAEXC,MAAO7B,KAFI,OAGX8B,IAAK,QAGP,OAAOC,EAAE/B,KAAD,MAAiB,CACvB+B,EAAE,MAEA,CAAEH,YAAa,gBACf5B,KAAKgC,OAJT,c,YClCW,WAAa,CAC1BrB,KAD0B,SAG1BsB,QAH0B,WAIxB,eAAU,YAAa,SAAvB,OAGFP,OAP0B,SAOpB,GAEJ,IAAMQ,EAAO,2BAAb,GAKA,OAHAA,EAAA,+BACAA,EAAA,iDAEOH,EAAEG,EAAD,IAAWA,EAAX,KAAsBA,EAA9B,a,YCfAC,EAAY,eACd,EACA,EACAzB,GACA,EACA,KACA,KACA,MAIa,aAAAyB,EAAiB,QAMhC,IAAkBA,EAAW,CAACC,WAASC,gBAAA,U,kCCxBvC,gBAUe,2BAAW,CACxB1B,KADwB,eAGxBgB,KAAM,iBAAO,CACXW,UAAU,IAGZC,QAPwB,WAOjB,WAILC,OAAA,uBAA6B,WAC3B,yCACA","file":"js/chunk-1e61cc09.97710594.js","sourcesContent":["var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-content',[_c('v-fade-transition',{attrs:{\"mode\":\"out-in\"}},[_c('router-view',{key:_vm.store.state.language})],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\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/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./View.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./View.vue?vue&type=script&lang=js&\"","// Styles\nimport './VMain.sass'\n\n// Mixins\nimport SSRBootable from '../../mixins/ssr-bootable'\n\n// Types\nimport { VNode } from 'vue'\n\n/* @vue/component */\nexport default SSRBootable.extend({\n name: 'v-main',\n\n props: {\n tag: {\n type: String,\n default: 'main',\n },\n },\n\n computed: {\n styles (): object {\n const {\n bar, top, right, footer, insetFooter, bottom, left,\n } = this.$vuetify.application\n\n return {\n paddingTop: `${top + bar}px`,\n paddingRight: `${right}px`,\n paddingBottom: `${footer + insetFooter + bottom}px`,\n paddingLeft: `${left}px`,\n }\n },\n },\n\n render (h): VNode {\n const data = {\n staticClass: 'v-main',\n style: this.styles,\n ref: 'main',\n }\n\n return h(this.tag, data, [\n h(\n 'div',\n { staticClass: 'v-main__wrap' },\n this.$slots.default\n ),\n ])\n },\n})\n","// Types\nimport { VNode } from 'vue'\n\n// Extensions\nimport VMain from '../VMain/VMain'\nimport { deprecate } from '../../util/console'\n\n/* @vue/component */\nexport default VMain.extend({\n name: 'v-main',\n\n created () {\n deprecate('v-content', 'v-main', this)\n },\n\n render (h): VNode {\n // Add the legacy class names\n const node = VMain.options.render.call(this, h)\n\n node.data!.staticClass += ' v-content'\n node.children![0]!.data!.staticClass += ' v-content__wrap'\n\n return h(node.tag, node.data, node.children)\n },\n})\n","import { render, staticRenderFns } from \"./View.vue?vue&type=template&id=2b69e054&\"\nimport script from \"./View.vue?vue&type=script&lang=js&\"\nexport * from \"./View.vue?vue&type=script&lang=js&\"\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 null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VContent } from 'vuetify/lib/components/VContent';\nimport { VFadeTransition } from 'vuetify/lib/components/transitions';\ninstallComponents(component, {VContent,VFadeTransition})\n","import Vue from 'vue'\n\n/**\n * SSRBootable\n *\n * @mixin\n *\n * Used in layout components (drawer, toolbar, content)\n * to avoid an entry animation when using SSR\n */\nexport default Vue.extend({\n name: 'ssr-bootable',\n\n data: () => ({\n isBooted: false,\n }),\n\n mounted () {\n // Use setAttribute instead of dataset\n // because dataset does not work well\n // with unit tests\n window.requestAnimationFrame(() => {\n this.$el.setAttribute('data-booted', 'true')\n this.isBooted = true\n })\n },\n})\n"],"sourceRoot":""}