Vue's question about adding new attributes to existing objects after an instance

1

   

my question: why list is not defined in todos in data, but can be rendered

Apr.20,2021

mounted is the hook after the data has been mounted
beforeMount is definitely no problem to render

the second is because you trigger the update assignment of data data, and the list data is also monitored, so render

Menu