Level 63
Is there nobody to help me ?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hello,
I have an studies array which contains several study and each study has the following properties : year (number) and diplomas (array).
studies.push({
'year': 2020,
'diplomas': ['diploma 1', 'diploma 2'],
});
...
$watch('studies', value => console.log(value));
When I change a diploma in the form, I have no console log.
How is it possible to watch to any change inside the diplomas array ?
Thanks for your help ;).
V
Please or to participate in this conversation.