0👍
onSSR(async () => {
await load();
await loadCountries();
if (shipping.value !== undefined) {
form.firstName = shipping.value.firstName;
}
});
You missed the reactivity by vue, there was a missing .value
in the shipping variable.
- [Vuejs]-Microsoft authentication using firebase
- [Vuejs]-Axios status is 449 despite response being 200
Source:stackexchange.com