# Calendar

[toc]

**_请用一句话对组件进行描述_**

## 组件引入

在`app.json`或在`index.json`中引入：

```json

{
  "usingComponents": {
    "tea-calendar": "../dist/calendar/index"
  }
}

```

## 用法

```html
<tea-calendar></tea-calendar>
```

## Props

| 参数                 | 类型        | 默认值      |
| ------------------ | --------- | -------- |
| type               | `String`  | `single` |
| specialDate        | `Array`   | `[]`     |
| prefixMonth        | `Number`  | `0`      |
| suffixMonth        | `Number`  | `12`     |
| disabledDate       | `Array`   | `[]`     |
| afterDisabledDate  | `String`  | ``       |
| beforeDisabledDate | `String`  | ``       |
| showSolarTerm      | `Boolean` | `true`   |
| showHoliday        | `Boolean` | `false`  |

## 事件

| 事件名 | 描述  | 回调参数 |
| --- | --- | ---- |
| -   | -   | -    |

## Slots

| 名称  | 描述  |
| --- | --- |
| -   | -   |

## 外部样式类

| 类名          | 描述       |
| ----------- | -------- |
| `ext-class` | 组件根节点样式类 |
