angular 6 - your first app

Posted xiaobin-hlj80

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angular 6 - your first app相关的知识,希望对你有一定的参考价值。

1. Editing the html file

srcappapp.component.html

<!--The content below is only a placeholder and can be replaced.-->
<div style="text-align:center">
<h3>Adam‘s To Do List</h3>
<div>
    <input/>
    <button>Add</button>
</div>
<table border="1">
    <thead>
        <tr>
            <th>Description</th>
            <th>Done</th>
        </tr>
    </thead>
    <tbody>
        <tr><td>Buy Flowers</td><td>No</td></tr>
        <tr><td>Get Shoes</td><td>No</td></tr>
        <tr><td>Collect Tickets</td><td>Yes</td></tr>
        <tr><td>Call Joe</td><td>No</td></tr>
    </tbody>
</table>

 

2. 

以上是关于angular 6 - your first app的主要内容,如果未能解决你的问题,请参考以下文章