linting fix
This commit is contained in:
parent
302ddf3090
commit
73c36be620
1 changed files with 5 additions and 5 deletions
|
|
@ -72,11 +72,6 @@ export default {
|
||||||
vm.setCmsContent(cmsContentPromise);
|
vm.setCmsContent(cmsContentPromise);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
mounted() {
|
|
||||||
if (this.VehiclesFromApi?.length === 1) {
|
|
||||||
this.selectedVehicleVin = this.VehiclesFromApi[0].vin;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
data() {
|
data() {
|
||||||
const policyVehicles = useMainStore().pageData(issPageValues.POLICY_VEHICLES);
|
const policyVehicles = useMainStore().pageData(issPageValues.POLICY_VEHICLES);
|
||||||
return {
|
return {
|
||||||
|
|
@ -160,6 +155,11 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
if (this.VehiclesFromApi?.length === 1) {
|
||||||
|
this.selectedVehicleVin = this.VehiclesFromApi[0].vin;
|
||||||
|
}
|
||||||
|
},
|
||||||
methods:
|
methods:
|
||||||
{
|
{
|
||||||
backButtonAction() {
|
backButtonAction() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue