摘要: 1 代码结构 2 myc01.component.html 1 <p>myc01 works!</p> 2 3 <!--pipe管道--> 4 <!--与vue不同:vue中的管道需要用户自己定制声明--> 5 <!--angular官方提供了一些常用的管道--> 6 <ul> 7 <li>大写:{ 阅读全文
posted @ 2022-05-14 22:58 孝文 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 1 代码结构 2 myc04.component.html 1 <p>myc04 works!</p> 2 3 <!--自定义指令--> 4 <div> 5 <input type="text"> 6 </div> 7 <div> 8 <!--自定义指令:ng generate directive 阅读全文
posted @ 2022-05-14 17:34 孝文 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 1 代码结构 2 myc03.component.ts 1 import { Component, OnInit } from '@angular/core'; 2 3 @Component({ 4 selector: 'app-myc03', 5 templateUrl: './myc03.com 阅读全文
posted @ 2022-05-14 17:03 孝文 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1 代码结构 2 myc02.component.ts 1 import { Component, OnInit } from '@angular/core'; 2 3 @Component({ 4 selector: 'app-myc02', 5 templateUrl: './myc02.com 阅读全文
posted @ 2022-05-14 16:46 孝文 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 1 项目结构 2 myc01.component.ts 1 import { Component, OnInit } from '@angular/core'; 2 3 @Component({ 4 selector: 'app-myc01', 5 templateUrl: './myc01.com 阅读全文
posted @ 2022-05-14 16:40 孝文 阅读(31) 评论(0) 推荐(0) 编辑