组件通讯,意在不同的指令和组件之间共享信息。
父->子 input
1 | // parent.html |
子->父 output
1 | // parent.html |
组件通讯,意在不同的指令和组件之间共享信息。
1 | // parent.html |
1 | // parent.html |
安装nodejs
1 | npm -v |
安装@angular/cli
1 | npm i -g @angular/cli |
CLI命令建立项目
1 | ng new ng7demo |
选择是否加入路由模块以及哪种css预处理器
可ctrl+c取消自动安装node_modules,手动进入项目npm install node-sass安装不上可切换淘宝镜像库或者用cnpm安装
- npm config set registry https://registry.npm.taobao.org npm install
or
npm install -g cnpm cnpm install
启动项目
1 | ng serve --open // 自动打开浏览器 http://localhost:4200/ |