# ActionSheet

### Intro
Action menu panel that pops up from the bottom.

### Install

``` javascript
import { createApp } from 'vue';
// vue
import { ActionSheet, Popup } from '@nutui/nutui';
// taro
import { ActionSheet, Popup } from '@nutui/nutui-taro';

const app = createApp();
app.use(ActionSheet).use(Popup);
```

## Basic Usage

:::demo
``` html
<template>
  <div>
  <nut-cell
      :show-icon="true"
      :isLink="true"
      @click="switchActionSheet('isVisible')"
     
    >
      <span><label>Basic Usage</label></span>
      <div v-html="state.val"></div>
    </nut-cell>
     <!-- demo Basic Usage -->
    <nut-actionsheet
      v-model:visible="state.isVisible"
      :menu-items="menuItems"
      @choose="chooseItem"
    >
    </nut-actionsheet>
    </div>
</template>
<script>
import { reactive } from 'vue';
export default {
  setup() {
  const state = reactive({
      isVisible: false,
      val: '',
    });
     const menuItems = [
      {
        name: 'option one'
      },
      {
        name: 'option two'
      },
      {
        name: 'option three'
      }
    ];
    const switchActionSheet = ( param ) => {
      state.isVisible = !state.isVisible;
    };
      const chooseItem = (itemParams) => {
      state.val = itemParams.name;
    };
    return {
      state,
      switchActionSheet,
      menuItems,
      chooseItem,
    };
  }
}
 </script>
```
:::

## Show Cancel Button
:::demo
``` html
<template>
  <div>
  <nut-cell
      :show-icon="true"
      :isLink="true"
      @click="switchActionSheet('isVisible')"
    >
      <span><label>Show Cancel Button</label></span>
      <div v-html="state.val"></div>
    </nut-cell>
     <!-- demo Show Cancel Button -->
    <nut-actionsheet
      v-model:visible="state.isVisible"
      :menu-items="menuItems"
      cancel-txt="cancel"
      @choose="chooseItem"
    >
    </nut-actionsheet>
    </div>
</template>
<script>
import { reactive } from 'vue';
export default {
  setup() {
  const state = reactive({
      isVisible: false,
      val: '',
    });
     const menuItems = [
       {
        name: 'option one'
      },
      {
        name: 'option two'
      },
      {
        name: 'option three'
      }
    ];
    const switchActionSheet = ( param ) => {
      state.isVisible = !state.isVisible;
    };
      const chooseItem = (itemParams) => {
      state.val = itemParams.name;
    };
    return {
      state,
      switchActionSheet,
      menuItems,
      chooseItem,
    };
  }
}
 </script>
```
:::
## Show Description
:::demo
``` html
<template>
  <div>
  <nut-cell
      :show-icon="true"
      :isLink="true"
      @click="switchActionSheet('isVisible')"
    >
      <span><label>Show Description</label></span>
      <div v-html="state.val"></div>
    </nut-cell>
     <!-- demo Show Description -->
    <nut-actionsheet
      v-model:visible="state.isVisible"
      cancel-txt="cancel"
      description="This is a presentation"
      :menu-items="menuItems"
      @choose="chooseItem"
    >
    </nut-actionsheet>
    </div>
</template>
<script>
import { reactive } from 'vue';
export default {
  setup() {
  const state = reactive({
      isVisible: false,
      val: '',
    });
     const menuItems = [
          {
        name: 'option one'
      },
      {
        name: 'option two'
      },
      {
        name: 'option three',
        subname: 'Description'
      }
    ];
    const switchActionSheet = ( param ) => {
      state.isVisible = !state.isVisible;
    };
      const chooseItem = (itemParams) => {
      state.val = itemParams.name;
    };
    return {
      state,
      switchActionSheet,
      menuItems,
      chooseItem,
    };
  }
}
 </script>
```
:::

## Option Status

:::demo
``` html
<template>
  <div>
  <nut-cell
      :show-icon="true"
      :isLink="true"
      @click="switchActionSheet('isVisible')"
     
    >
      <span><label>Option Status</label></span>
      <div v-html="state.val"></div>
    </nut-cell>
     <!-- demo Option Status -->
    <nut-actionsheet
      v-model:visible="state.isVisible"
      :menu-items="menuItems"
      choose-tag-value="Shading Options"
      @choose="chooseItem"
       cancel-txt="cancel"
    >
    </nut-actionsheet>
    </div>
</template>
<script>
import { reactive } from 'vue';
export default {
  setup() {
  const state = reactive({
      isVisible: false,
      val: '',
    });
     const menuItems = [
      {
        name: 'Shading Options'
      },
      {
        name: 'Disable option',
        disable: true
      }
    ];
    const switchActionSheet = ( param ) => {
      state.isVisible = !state.isVisible;
    };
      const chooseItem = (itemParams) => {
      state.val = itemParams.name;
    };
    return {
      state,
      switchActionSheet,
      menuItems,
      chooseItem,
    };
  }
}
 </script>
```
:::

## Prop

| Attribute            | Description               | Type   | Default  |
|------------------|----------------------------------------|---------|-----------|
| v-model:visible       | Whether to show ActionSheet	                             | Boolean | false|
| menu-items       | Options                                 | Array   | [ ]       |
| option-tag       | Custom Options tag key                 | String  | 'name'    |
| option-sub-tag   | Custom Options subtag key                 | String  | 'subname' |
| choose-tag-value | Set the value of the selected item | String  | ''        |
| color            | selected item color，when choose-tag-value == option-tag   | String  | '#ee0a24' |
| title            | set list item title                         | String  | ''        |
| description      | set list item description                | String  | ''        |
| cancel-txt       | Text of cancel button                               | String  | '取消'   |
| close-abled      | Whether the mask layer can be closed                       | Boolean | true      |

## menu-items

| Attribute            | Description               | Type   |
|--------|--------------------|-----------------------------------|
| name | Title      | String    |
| subname | Subtitle | String          |
| color | Text color（Check Item Color Hierarchy > Option Font Color） | String          |
| loading | Whether to be loading status | Boolean          |
| disable | Whether to be disabled | Boolean       |

## Event

| Event | Description                  | Arguments    |
|--------|--------------------|-----------------------------------|
| choose | Triggered after selection       | item, index |
| cancel | Triggered when cancel copy is clicked | -                              |
| close | Triggered when the mask layer is clicked | event: Event                              |