热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Angular11andngzorroantd11

Angular11andng-zorro-antd11创建一个带路由的ng项目ngnewproject-name--routing直接enter键(默认都是No&#

Angular11 and ng-zorro-antd 11

创建一个带路由的ng项目
ng new project-name --routing
直接enter键(默认都是No),不需要选Yes。
进入项目目录
ng serve --open
打开看下一切正常
添加ng-zorro-antd
ng add ng-zorro-antd
选项默认 No
语言可以选择中文,模板空模板。
在这里插入图片描述

指定文件夹创建两个组件:
ng g c componens/one
ng g c componens/two

修改app-routing.module.ts

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { OneComponent } from './componens/one/one.component';
import { TwoComponent } from './componens/two/two.component';const routes: Routes = [{path:'one-component',component: OneComponent,},{path:'two-component',component: TwoComponent},
];@NgModule({imports: [RouterModule.forRoot(routes)],exports: [RouterModule]
})
export class AppRoutingModule { }

<nav><ul><li><a routerLink&#61;"/one-component" routerLinkActive&#61;"active">One Componenta>li><li><a routerLink&#61;"/two-component" routerLinkActive&#61;"active">Two Componenta>li>ul>
nav>
<div><router-outlet>router-outlet>
div>

运行结果
在这里插入图片描述

再添加个布局&#xff0c;效果如下。
在这里插入图片描述
项目GitHub 地址 &#xff1a;https://github.com/scqilin/angular11-ng-zorro

ng g c components/hello -m app


推荐阅读
author-avatar
胸膛舒畅_736
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有