Dom is not rendered after vue $set

clipboard.png

for

clipboard.png

template

clipboard.png

what he has been loading is v-else and does not trigger a dom update

Apr.25,2021

what I want to know is this.data 's data. What do you want?

this data is not a data defined on an object

if you want to access data, you should define a data under data

so the code may be

data: {
    data: {}
}


this.$set(this.data, 'createDate', {})
this.$set(this.data.createDate, 'xx', 'xx')
Menu