\r\n\r\n\r\n\r\n","import mod from \"-!../../node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/@vue/cli-plugin-babel/node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/@vue/cli-service/node_modules/vue-loader/lib/index.js??vue-loader-options!./packages.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/@vue/cli-plugin-babel/node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/@vue/cli-service/node_modules/vue-loader/lib/index.js??vue-loader-options!./packages.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./packages.vue?vue&type=template&id=123ab1d1\"\nimport script from \"./packages.vue?vue&type=script&lang=js\"\nexport * from \"./packages.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/@vue/cli-service/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","export default {\r\n data() {\r\n return {\r\n loading: {\r\n step1: false,\r\n step2: false,\r\n step3: false,\r\n },\r\n error: {\r\n step1: null,\r\n step2: null,\r\n step3: null,\r\n step: null,\r\n price: null,\r\n },\r\n info: {\r\n step1: null,\r\n step2: null,\r\n step3: null,\r\n step: null,\r\n price: null,\r\n },\r\n validationError: null,\r\n existingPolicy: false,\r\n existingPolicyKey: null,\r\n };\r\n },\r\n watch: {\r\n \"product.step\": {\r\n handler: function (newValue, oldValue) {\r\n this.scrollToTop();\r\n\r\n // Update temporary product if product is not existing\r\n if (!this.existingPolicy) {\r\n this.$store.commit(\"temporaryProduct\", this.product);\r\n }\r\n\r\n // If you change step, update router with push,. otherwise just update router with replace, so that navigation is intact\r\n if (oldValue && newValue != oldValue) {\r\n // Update query with new step value\r\n let query = this.copy(this.$route.query);\r\n query.step = newValue;\r\n\r\n // Push value to router\r\n this.$router\r\n .push({ name: this.product.productName, query: query })\r\n .catch(() => {});\r\n } else if (!oldValue && newValue != this.$route.query.step) {\r\n // Update query with new step value\r\n let query = this.copy(this.$route.query);\r\n query.step = newValue;\r\n\r\n // Push value to router\r\n this.$router.replace({\r\n name: this.product.productName,\r\n query: query,\r\n });\r\n }\r\n },\r\n immediate: true,\r\n },\r\n \"$route.query.step\": {\r\n handler(value) {\r\n if (value) {\r\n this.product.step = parseInt(value);\r\n }\r\n },\r\n immediate: true,\r\n },\r\n },\r\n methods: {\r\n /*\r\n * Parse data to api\r\n */\r\n parseSubmitData(product) {\r\n // Create Submit data object with standard baseInfo\r\n let submitData = {\r\n carObjectData: [],\r\n homeObjectData: [],\r\n personalAccidentObjectData: [],\r\n buildingObjectData: [],\r\n caravanObjectData: [],\r\n dogObjectData: [],\r\n travelObjectData: [],\r\n baseInfo: {},\r\n };\r\n\r\n // Loop through packages\r\n for (const [key, value] of Object.entries(product.packages)) {\r\n const pkey = key;\r\n\r\n // Do not parse?\r\n if (\"parse\" in value && !value.parse) {\r\n submitData[product.priceObject].push({ ...value, key: key });\r\n continue;\r\n }\r\n\r\n // Create car object for the array in submitData\r\n let currentObject = {\r\n key: key,\r\n coverages:\r\n \"coveragesBase\" in value\r\n ? this.$options.filters.renderTextInObject(\r\n Array.from(value.coveragesBase),\r\n product\r\n )\r\n : [],\r\n };\r\n\r\n // Run through fields and fill out data\r\n for (const [key, value] of Object.entries(product.fields)) {\r\n // Only send if the field is set to export\r\n if (value.export) {\r\n currentObject[key] = value.value;\r\n }\r\n\r\n // If base info set to true, export to baseInfo\r\n if (value.baseInfo) {\r\n submitData.baseInfo[key] = value.value;\r\n }\r\n }\r\n\r\n // Reset price on package\r\n value.price = null;\r\n\r\n // Set bundle to loading\r\n value.loading = true;\r\n\r\n // Run through coverages and put in car object\r\n if (\"coverages\" in value) {\r\n value.coverages.forEach((element) => {\r\n // Only send if package is included and set to export\r\n if (element.included && element.export) {\r\n // Create coverage element\r\n let coverage = {\r\n bundleCode: element.key,\r\n excessId: product.fields.excessId.value,\r\n };\r\n\r\n // Inject values\r\n if (\"inject\" in element) {\r\n for (const key in element.inject) {\r\n coverage[key] = product.fields[element.inject[key]].value;\r\n }\r\n }\r\n\r\n // Push this coverage to car object\r\n currentObject.coverages.push(coverage);\r\n }\r\n });\r\n }\r\n\r\n //Run through extra coverages and put in coverages\r\n if (product.coverages && \"coverages\" in value) {\r\n //eslint-disable-next-line no-unused-vars\r\n for (const [key, value] of Object.entries(product.coverages)) {\r\n // Only send if coverage is chosen\r\n if (value.chosen) {\r\n const keys = Array.isArray(value.keys) ? value.keys : value.keys[pkey];\r\n\r\n // Run through keys on extra coverage\r\n keys.forEach((element) => {\r\n let coverage = {\r\n bundleCode: element,\r\n excessId: product.fields.excessId.value,\r\n };\r\n\r\n // Inject values\r\n if (\"inject\" in value) {\r\n for (const key in value.inject) {\r\n coverage[key] = product.fields[value.inject[key]].value;\r\n }\r\n }\r\n\r\n // Push this coverage to car object\r\n currentObject.coverages.push(coverage);\r\n });\r\n }\r\n }\r\n }\r\n\r\n // Map if priceobject is 'personalAccidentObjectData'\r\n if (product.priceObject == \"personalAccidentObjectData\") {\r\n currentObject.coverages = currentObject.coverages.map((cov) => {\r\n if ([200, 250].includes(parseInt(cov.bundleCode))) {\r\n cov.bundleSumInsured = parseInt(currentObject.bundleSumInsured);\r\n }\r\n\r\n if ([100].includes(parseInt(cov.bundleCode))) {\r\n cov.bundleSumInsured = parseInt(currentObject.deathSumInsured);\r\n }\r\n\r\n return cov;\r\n });\r\n }\r\n\r\n // Push to submit data\r\n submitData[product.priceObject].push(currentObject);\r\n\r\n // Add extra products\r\n if (\"extra\" in product) {\r\n for (const key in product.extra) {\r\n const extra = product.extra[key];\r\n\r\n if (extra.chosen) {\r\n let prod = { ...extra.product, key: `extra_${key}` };\r\n\r\n // imports from main product\r\n if (\"import\" in extra) {\r\n for (const imp of extra.import) {\r\n prod[imp] = currentObject[imp];\r\n }\r\n }\r\n\r\n // Add prod\r\n submitData[product.priceObject].push(prod);\r\n }\r\n }\r\n }\r\n }\r\n\r\n return submitData;\r\n },\r\n /*\r\n * Function for changing step\r\n */\r\n changeStep(step) {\r\n this.product.step = step;\r\n },\r\n /*\r\n * Remove packages\r\n */\r\n resetPackages() {\r\n let self = this;\r\n\r\n // Set all packages to false\r\n // eslint-disable-next-line no-unused-vars\r\n for (const [key, value] of Object.entries(self.product.packages)) {\r\n value.value = false;\r\n }\r\n },\r\n /*\r\n * When a package is chosen\r\n */\r\n choosePackage(value) {\r\n this.product.package = value;\r\n\r\n // Reset selection\r\n this.resetPackages();\r\n value.value = true;\r\n\r\n // Track data for retargeting\r\n this.trackData(\"calculatePrice\", this.product, this.$store.state.basket);\r\n\r\n // Update temporary product if product is not existing\r\n if (!this.existingPolicy) {\r\n this.$store.commit(\"temporaryProduct\", this.product);\r\n }\r\n // If exiting policy, update existing policy\r\n if (this.existingPolicy && this.allRequirementsMet) {\r\n this.updateExistingPolicy(this.product, this.existingPolicyKey);\r\n }\r\n },\r\n /*\r\n * Go to message box\r\n */\r\n messageBox() {\r\n this.$router.push({\r\n name: \"Henvendelse\",\r\n params: {\r\n validation: this.validationError,\r\n },\r\n });\r\n },\r\n /*\r\n * Set from price response\r\n */\r\n insertPrice(data) {\r\n // Check if the response has objects\r\n if (data.objects && data.objects.length > 0) {\r\n // Run through coverages and put in car object\r\n data.objects.forEach((element) => {\r\n if (\"key\" in element && element.key.indexOf(\"extra_\") == 0) {\r\n // Price is for extra product\r\n this.product.extraPrices[element.key.split(\"_\")[1]] = element;\r\n } else if (\"key\" in element) {\r\n // Price is for package\r\n this.product.packages[element.key].price = element;\r\n\r\n // Remove loading\r\n this.product.packages[element.key].loading = false;\r\n } else {\r\n // Add object as key\r\n element.key = element.object.toLowerCase();\r\n\r\n // Price is for package\r\n this.product.packages[element.object.toLowerCase()].price = element;\r\n\r\n // Remove loading\r\n this.product.packages[element.object.toLowerCase()].loading = false;\r\n }\r\n });\r\n }\r\n },\r\n /*\r\n * Form error\r\n */\r\n formError(property, value) {\r\n this.product.fields[property].error = value;\r\n },\r\n },\r\n};\r\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',[_c('div',{staticClass:\"container small\"},[_c('h1',{staticClass:\"page-headline\"},[_vm._v(_vm._s(_vm.product.productName))]),_c('progressIndicator',{attrs:{\"step\":_vm.product.step,\"steps\":_vm.product.steps}})],1),(_vm.product.step == 1)?[_c('div',{staticClass:\"container small\"},[_c('div',{staticClass:\"box\"},[_c('form',{attrs:{\"id\":\"step1\"},on:{\"submit\":function($event){$event.preventDefault();return _vm.submitStep1.apply(null, arguments)}}},[_c('transition',{attrs:{\"name\":\"hideFormGroup\"}},[_c('FormInput',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.product.fields.registrationToggle.value),expression:\"!product.fields.registrationToggle.value\"}],attrs:{\"data\":_vm.product.fields.registrationNumber,\"product\":_vm.product},on:{\"formFunction\":_vm.formFunction}})],1),_c('FormInput',{attrs:{\"data\":_vm.product.fields.registrationToggle,\"product\":_vm.product},on:{\"formFunction\":_vm.formFunction}}),_c('VehicleInformation',{attrs:{\"data\":_vm.product.fields.registrationData,\"product\":_vm.product}}),_c('transition',{attrs:{\"name\":\"hideFormGroup\"}},[_c('FormInput',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.product.fields.registrationToggle.value),expression:\"product.fields.registrationToggle.value\"}],attrs:{\"data\":_vm.product.fields.vehicleBrand,\"product\":_vm.product},on:{\"formFunction\":_vm.formFunction}})],1),_c('transition',{attrs:{\"name\":\"hideFormGroup\"}},[_c('FormInput',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.product.fields.registrationToggle.value),expression:\"product.fields.registrationToggle.value\"}],attrs:{\"data\":_vm.product.fields.vehicleModel,\"product\":_vm.product},on:{\"formFunction\":_vm.formFunction}})],1),_c('transition',{attrs:{\"name\":\"hideFormGroup\"}},[_c('FormInput',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.product.fields.registrationToggle.value),expression:\"product.fields.registrationToggle.value\"}],attrs:{\"data\":_vm.product.fields.modelYear,\"product\":_vm.product},on:{\"formFunction\":_vm.formFunction}})],1),_c('transition',{attrs:{\"name\":\"hideFormGroup\"}},[_c('FormInput',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.product.fields.registrationToggle.value),expression:\"product.fields.registrationToggle.value\"}],attrs:{\"data\":_vm.product.fields.fuelType,\"product\":_vm.product},on:{\"formFunction\":_vm.formFunction}})],1),_c('transition',{attrs:{\"name\":\"hideFormGroup\"}},[_c('FormInput',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.product.fields.registrationToggle.value),expression:\"product.fields.registrationToggle.value\"}],attrs:{\"data\":_vm.product.fields.vehicleVariant,\"product\":_vm.product},on:{\"formFunction\":_vm.formFunction}})],1)],1)]),_c('message',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.error.step1),expression:\"error.step1\"}],attrs:{\"message\":_vm.error.step1,\"type\":\"warning\"},on:{\"formFunction\":_vm.formFunction}})],1)]:(_vm.product.step == 2)?[_c('div',{staticClass:\"container small\"},[_c('div',{staticClass:\"box\"},[_c('form',{attrs:{\"id\":\"step2\"},on:{\"submit\":function($event){$event.preventDefault();return _vm.submitStep2.apply(null, arguments)}}},[_vm._l((_vm.product.fields),function(field,index){return [(field.step == 2)?_c('FormInput',{key:index,attrs:{\"data\":field,\"product\":_vm.product},on:{\"formFunction\":_vm.formFunction}}):_vm._e()]})],2)]),_c('message',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.error.step2),expression:\"error.step2\"}],attrs:{\"message\":_vm.error.step2,\"type\":\"warning\"},on:{\"formFunction\":_vm.formFunction}})],1)]:(_vm.product.step == 3)?[_c('form',{attrs:{\"id\":\"step3\"},on:{\"submit\":function($event){$event.preventDefault();return _vm.submitStep3.apply(null, arguments)}}},[_c('div',{staticClass:\"container small\"},[_c('div',{staticClass:\"box\"},[_vm._l((_vm.product.fields),function(field,index){return [_c('FormInput',{directives:[{name:\"show\",rawName:\"v-show\",value:(field.step == 3),expression:\"field.step == 3\"}],key:index,attrs:{\"data\":field,\"product\":_vm.product},on:{\"formFunction\":_vm.formFunction}})]})],2),_c('message',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.error.price),expression:\"error.price\"}],attrs:{\"message\":_vm.error.price,\"type\":\"warning\"},on:{\"formFunction\":_vm.formFunction}})],1),_c('packages',{attrs:{\"altLinkText\":\"Læs mere om vores bilforsikring\",\"packages\":_vm.product.packages,\"packageLink\":_vm.product.packageLink,\"requirementsMet\":_vm.allRequirementsMet},on:{\"packageChoice\":_vm.choosePackage}}),_c('coverages',{attrs:{\"requirementsMet\":_vm.allRequirementsMet},on:{\"packageChoice\":_vm.choosePackage},model:{value:(_vm.product.coverages),callback:function ($$v) {_vm.$set(_vm.product, \"coverages\", $$v)},expression:\"product.coverages\"}})],1)]:_vm._e(),_c('div',{staticClass:\"container small\"},[_c('div',{staticClass:\"button-flex-container\"},[(_vm.product.step > 1)?_c('button',{staticClass:\"button white justify-start\",attrs:{\"type\":\"button\"},on:{\"click\":function($event){$event.preventDefault();_vm.product.step -= 1}}},[_vm._v(\" Tilbage \")]):_vm._e(),(_vm.product.step == 1)?_c('button',{staticClass:\"button\",attrs:{\"type\":\"submit\",\"form\":\"step1\",\"disabled\":!_vm.requirementsStep1Met || _vm.loading.step1}},[(!_vm.loading.step1)?[_vm._v(\"Næste\")]:(_vm.loading.step1)?[_c('i',{staticClass:\"fa-light fa-spinner-third fa-fw icon-spin\"})]:_vm._e()],2):_vm._e(),(_vm.product.step == 2)?_c('button',{staticClass:\"button\",attrs:{\"type\":\"submit\",\"form\":\"step2\",\"disabled\":!_vm.requirementsStep2Met || _vm.loading.step2}},[(!_vm.loading.step2)?[_vm._v(\"Næste\")]:(_vm.loading.step2)?[_c('i',{staticClass:\"fa-light fa-spinner-third fa-fw icon-spin\"})]:_vm._e()],2):_vm._e(),(_vm.product.step == 3)?_c('button',{staticClass:\"button\",attrs:{\"type\":\"submit\",\"form\":\"step3\",\"disabled\":!_vm.requirementsStep3Met}},[(_vm.existingPolicy)?[_vm._v(\"Opdater indkøbskurv\")]:[_vm._v(\"Tilføj til indkøbskurv\")]],2):_vm._e()])]),_c('product-footer',{attrs:{\"productName\":_vm.product.productName,\"productId\":_vm.product.productId,\"productLink\":_vm.product.productLink},on:{\"contactFromFooter\":_vm.messageBox}},[_vm._v(\" Med vores Bilforsikring får du frit valg af værksted, fri lånebil og gratis nummerpladeforsikring, ligesom du også trygt kan låne din bil ud til dine egne børn, delebørn og svigerbørn, uden at din selvrisiko stiger, hvis der sker en skade. \")])],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n
\r\n\r\n \r\n \r\n Med vores Bilforsikring får du frit valg af værksted, fri lånebil og\r\n gratis nummerpladeforsikring, ligesom du også trygt kan låne din bil ud\r\n til dine egne børn, delebørn og svigerbørn, uden at din selvrisiko stiger,\r\n hvis der sker en skade.\r\n \r\n
\r\n\r\n\r\n","import mod from \"-!../../node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/@vue/cli-plugin-babel/node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/@vue/cli-service/node_modules/vue-loader/lib/index.js??vue-loader-options!./M14.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/@vue/cli-plugin-babel/node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/@vue/cli-service/node_modules/vue-loader/lib/index.js??vue-loader-options!./M14.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./M14.vue?vue&type=template&id=7d49fa2c\"\nimport script from \"./M14.vue?vue&type=script&lang=js\"\nexport * from \"./M14.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/@vue/cli-service/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","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{class:_vm._class},[(_vm.showTitle && (Object.keys(_vm._coverage_groups).length > 0 || _vm.slots.length > 0))?_c('h3',{staticClass:\"text-align-center margin-top-40 margin-bottom-40\"},[_vm._v(\" \"+_vm._s(_vm.altTitle || \"Tilvalgsforsikringer\")+\" \")]):_c('div',[_vm._v(\" \")]),_c('div',{staticClass:\"coverages\"},[_vm._t(\"default\"),_vm._l((_vm._coverage_groups),function(group,j){return _c('div',{key:j,class:_vm.coverageGroupClass(group)},_vm._l((group),function(coverage,i){return _c('div',{key:i,staticStyle:{\"position\":\"relative\"}},[_c('div',{class:{ coverage: true, blocked: 'blocked' in coverage.base && coverage.base.blocked }},[('blocked' in coverage.base && coverage.base.blocked && 'blockedText' in coverage.base)?_c('div',{staticClass:\"block-text-padding\"},[_c('i',{staticClass:\"fa-regular fa-circle-info\"}),_vm._v(\" \"+_vm._s(coverage.base.blockedText))]):_vm._e(),('blocked' in coverage.base && coverage.base.blocked)?_c('div',{staticClass:\"block-overlay\"}):_vm._e(),_c('div',{staticClass:\"coverage-item\",class:[{ disabled: !_vm.requirementsMet }]},[_c('i',{staticClass:\"fa-light fa-fw coverage-icon\",class:coverage.base.icon}),_c('div',{staticClass:\"coverage-text\"},[_c('span',{staticClass:\"coverage-name\"},[_vm._v(_vm._s(coverage.base.value))]),_c('span',{staticClass:\"coverage-description\",domProps:{\"innerHTML\":_vm._s(coverage.base.description)}})]),_c('FlipSwitch',{attrs:{\"value\":coverage.base.chosen,\"enabled\":coverage.ext._enabled},on:{\"input\":function($event){return _vm.toggleCoverage(coverage)}}})],1),_vm._l((coverage.base.keys),function(key){return _c('div',{key:`coverage-${key}`,staticStyle:{\"border-top\":\"1px solid #e2e2e2\"}},[_vm._t(`key-${key}`,null,{\"coverage\":coverage})],2)})],2),('blocked' in coverage.base && coverage.base.blocked && 'blockedText' in coverage.base)?_c('div',{staticClass:\"block-text\"},[_c('i',{staticClass:\"fa-regular fa-circle-info\"}),_vm._v(\" \"+_vm._s(coverage.base.blockedText))]):_vm._e()])}),0)}),_vm._l((_vm.slots),function(slot){return _c('div',{key:slot,staticClass:\"coverage-group white\"},[_c('div',{staticStyle:{\"position\":\"relative\"}},[_c('div',{staticClass:\"coverage\"}),_c('div',{staticStyle:{\"border-top\":\"1px solid #e2e2e2\"}},[_vm._t(slot)],2)])])})],2)])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n
\r\n \r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/@vue/cli-plugin-babel/node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/@vue/cli-service/node_modules/vue-loader/lib/index.js??vue-loader-options!./coverages.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/@vue/cli-plugin-babel/node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/@vue/cli-service/node_modules/vue-loader/lib/index.js??vue-loader-options!./coverages.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./coverages.vue?vue&type=template&id=32db150c&scoped=true\"\nimport script from \"./coverages.vue?vue&type=script&lang=js\"\nexport * from \"./coverages.vue?vue&type=script&lang=js\"\nimport style0 from \"./coverages.vue?vue&type=style&index=0&id=32db150c&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/@vue/cli-service/node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"32db150c\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',[_c('h4',{staticClass:\"progress-indicator-mobile-text\"},[_vm._v(_vm._s(_vm.currentStepName))]),_c('ul',{staticClass:\"progress-indicator\"},_vm._l((_vm.steps),function(item,index){return _c('li',{key:index,class:[\n { active: _vm.step == index + 1 },\n { completed: _vm.step > index + 1 },\n ]},[_c('div',{staticClass:\"bubble\"},[_c('div',{staticClass:\"bubbleIcon\"},[(_vm.step > index + 1)?_c('i',{staticClass:\"fa-light fa-check\"}):_c('i',{staticClass:\"fa-light\",class:item.icon})])]),_c('span',{staticClass:\"text\"},[_vm._v(_vm._s(item.name))])])}),0)])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n
\r\n
{{ currentStepName }}
\r\n
\r\n
index + 1 },\r\n ]\"\r\n >\r\n
\r\n
\r\n index + 1\" class=\"fa-light fa-check\">\r\n \r\n
\r\n
\r\n {{ item.name }}\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n","import mod from \"-!../../node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/@vue/cli-plugin-babel/node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/@vue/cli-service/node_modules/vue-loader/lib/index.js??vue-loader-options!./progress-indicator.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/@vue/cli-plugin-babel/node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/@vue/cli-plugin-babel/node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/@vue/cli-service/node_modules/vue-loader/lib/index.js??vue-loader-options!./progress-indicator.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./progress-indicator.vue?vue&type=template&id=7b9fc7be\"\nimport script from \"./progress-indicator.vue?vue&type=script&lang=js\"\nexport * from \"./progress-indicator.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/@vue/cli-service/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","// style-loader: Adds some css to the DOM by adding a