diff --git a/src/layouts/policy-vehicles/policy-vehicles.vue b/src/layouts/policy-vehicles/policy-vehicles.vue index 56985843..efd7777b 100644 --- a/src/layouts/policy-vehicles/policy-vehicles.vue +++ b/src/layouts/policy-vehicles/policy-vehicles.vue @@ -72,11 +72,6 @@ export default { vm.setCmsContent(cmsContentPromise); }); }, - mounted() { - if (this.VehiclesFromApi?.length === 1) { - this.selectedVehicleVin = this.VehiclesFromApi[0].vin; - } - }, data() { const policyVehicles = useMainStore().pageData(issPageValues.POLICY_VEHICLES); return { @@ -160,6 +155,11 @@ export default { } } }, + mounted() { + if (this.VehiclesFromApi?.length === 1) { + this.selectedVehicleVin = this.VehiclesFromApi[0].vin; + } + }, methods: { backButtonAction() {