Part 5 — Styling your app [Customizing the UI]
In this part, you will learn how you can customize HTML in your application. We will use our Application Designer to preview the HTML files.
Table of contents
Step 1 — Element widgets, again
<div>
<div>
<el-button type="success">Success</el-button>
<el-button type="warning">Warning</el-button>
<el-button type="danger">Danger</el-button>
<el-button type="info">Info</el-button>
</div>
<hr/>
<div>
state.checkedList value: {{state.checkedList}}
</div>
<hr/>
<div>
<el-checkbox-group v-model="state.checkedList">
<el-checkbox label="Option A"></el-checkbox>
<el-checkbox label="Option B"></el-checkbox>
<el-checkbox label="Option C"></el-checkbox>
</el-checkbox-group>
</div>
</div>

Step 2 — HTML Styles

Step 3 — Elements properties (Disabling, Hiding, Loading, Iterating)


Last updated