Configuring the Page Data Model
Understanding the Data Model
Binding Data to Page Elements
"user": {
"firstName": ""
}{
"inputType": "text",
"label": "First Name",
"model": "user.firstName",
"styleClasses": "",
"type": "input"
}<input type="text" v-model="model.user.firstName" />
<p>Your first name is: {{ model.user.firstName }}</p>Default Data Model
Development Data Model
Caching and Syncing


Last updated
Was this helpful?