Let's consider the input component below:
<input type="text" v-model="example.modules.report.description.title"></input>
I don't want to manually define the object structure in the data:
example: {
modules: {
report: {
description: {
title: ""
}
}
}
}
I expected Vue.js to automatically create this structure like Angular.js, but it doesn't happen.
Is there a solution to this issue?