# Cell

### Intro

The cell is a single display item in the list.

### Install

```javascript
import { createApp } from 'vue';
import { Cell, CellGroup, Icon } from '@nutui/nutui';

const app = createApp();
app.use(Cell).use(CellGroup).use(Icon);
```

### Basic Usage

:::demo

```html
<template>
  <nut-cell title="Title" desc="Description"></nut-cell>
  <nut-cell title="Title" sub-title="Subtitle Description" desc="Desc"></nut-cell>
  <nut-cell title="Click Test" @click="testClick"></nut-cell>
  <nut-cell title="Round Radius 0" round-radius="0"></nut-cell>
</template>
<script>
  import { ref } from 'vue';
  export default {
    setup() {
      const switchChecked = ref(true);
      const testClick = (event) => {
        console.log('Click Test');
      };
      return { testClick, switchChecked };
    }
  };
</script>
```

:::

### Size setting large

:::demo

```html
<template>
  <nut-cell size="large" title="Title" desc="Description"></nut-cell>
  <nut-cell size="large" title="Title" sub-title="Subtitle Description" desc="Desc"></nut-cell>
</template>
```

:::

### Use Slots

:::demo

```html
<template>
  <nut-cell>
    <div>Content</div>
  </nut-cell>
</template>
```

:::

### Use Slots title

:::demo

```html
<template>
  <nut-cell desc="Description">
      <template v-slot:title>
        <span>Title <b style="color: red">1</b></span>
      </template>
  </nut-cell>
</template>
```

:::
### Link | CellGroup Usage

:::demo

```html
<template>
  <nut-cell-group title="Link | CellGroup Usage" desc="Usage nut-cell-group support title desc slots">
    <nut-cell title="Link Usage" is-link></nut-cell>
    <nut-cell title="URL Jump" desc="https://m.jd.com" is-link url="https://m.jd.com"></nut-cell>
    <nut-cell title="Router Jump ’/‘ " to="/"></nut-cell>
  </nut-cell-group>
</template>
```

:::

### Customize the right arrow area

:::demo

```html
<template>
  <nut-cell-group title="Customize the right arrow area">
    <nut-cell title="Switch">
      <template v-slot:link>
        <nut-switch v-model="switchChecked" />
      </template>
    </nut-cell>
  </nut-cell-group>
</template>
<script lang="ts">
  import { ref } from 'vue';
  export default {
    setup() {
      const testClick = (event: Event) => {
        console.log('Click Test');
      };
      const switchChecked = ref(true);
      return { testClick, switchChecked };
    }
  };
</script>
```

:::

### Customize the left Icon area

:::demo

```html
<template>
  <nut-cell-group title="Customize the left Icon area">
    <nut-cell title="Image">
      <template v-slot:icon>
        <img
          class="nut-icon"
          src="https://img11.360buyimg.com/imagetools/jfs/t1/137646/13/7132/1648/5f4c748bE43da8ddd/a3f06d51dcae7b60.png"
        />
      </template>
    </nut-cell>
  </nut-cell-group>
</template>
```

:::

### Cell Display Icon

:::demo

```html
<template>
  <nut-cell title="Name" icon="my" desc="Description"></nut-cell>
</template>
```

:::

### Only display desc , you can adjust the content position through desc-text-align

:::demo

```html
<template>
  <nut-cell desc-text-align="left" desc="Description"></nut-cell>
</template>
```

:::

### Vertical Center

You can center the left and right contents of the cell vertically through the 'center' attribute.

:::demo

```html
<template>
  <nut-cell center title="Title" sub-title="Subtitle Description" desc="Desc"></nut-cell>
</template>
```

:::

## API

### CellGroup Prop

| Attribute | Description | Type   | Default |
|-----------|-------------|--------|---------|
| title     | Title       | String | -       |
| desc      | Description | String | -       |

### Cell Prop

| Attribute       | Description                                                                                              | Type             | Default |
|-----------------|----------------------------------------------------------------------------------------------------------|------------------|---------|
| title           | Title                                                                                                    | String           | -       |
| sub-title       | Subtitle                                                                                                 | String           | -       |
| desc            | Description                                                                                              | String           | -       |
| desc-text-align | Right description text alignment [text-align](https://www.w3school.com.cn/cssref/pr_text_text-align.asp) | String           | right   |
| is-link         | Whether to show the right arrow and turn on click feedback                                               | Boolean          | false   |
| icon            | Left [icon name](#/icon) or image url                                                                    | String           | -       |
| round-radius    | Corner radius                                                                                            | Number           | 6px     |
| url             | Link URL                                                                                                 | String           | -       |
| to              | Target route of the link, same as to of vue-router                                                       | String ｜ Object | -       |
| replace         | If true, the navigation will not leave a history record                                                  | Boolean          | false   |
| center`v3.1.21` | Whether to center content vertically                                                                     | Boolean          | false   |
| size`v3.1.22`   | Size, can be set to `large`                                                                              | String           | ''      |

### Cell Event

| Event | Description                  | Arguments   |
|-------|------------------------------|-------------|
| click | Emitted when cell is clicked | event:Event |

## Cell Slots

| Name            | Description        |
|-----------------|--------------------|
| icon `v3.1.4`   | Custom Left `icon` |
| default         | Default slot       |
| link            | Custom Right`link` |
| title `v3.1.22` | Custom`title`slot  |

## CellGroup Slots

| Name            | Description       |
|-----------------|-------------------|
| title `v3.1.10` | Custom`title`slot |
| desc `v3.1.12`  | Custom`desc`slot  |
