---
type: Guide
title: 开始使用
order: 1
---

[在线体验](http://bixi-pro.datagrand.com/#/label/text)

### 1. 依赖安装
``` bash
yarn add @bixi/label
```

### 2. 修改 angular.json

``` json
{
  "architect": {
    "build": {
      "options": {
        "assets": [
          {
            "glob": "**/*",
            "input": "node_modules/@bixi/label/source",
            "output": "/bixi-label"
          }
        ]
      }
    }    
  }
}
```

### 3. 模块注册

``` typescript
import { BixiLabelModule } from '@bixi/label';

@NgModule({
  imports: [
    BixiLabelModule,
  ]
})
export class SharedModule { }
```