angular 6 - your first app

仰天大笑出门去,我辈岂是蓬蒿人。这篇文章主要讲述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>

 
【angular 6 - your first app】2. 

    推荐阅读