---
order: 2
title: 403
---

403 页面，配合自定义操作。

```ts
import { Component } from '@angular/core';

@Component({
  selector: 'app-demo',
  template: `
  <exception type="403">
    <button nz-button [nzType]="'primary'">回到首页</button>
    <button nz-button>查看详情</button>
  </exception>`
})
export class DemoComponent {
}
```
