SListItem <s-list-item>
ts
import { SListItem } from 'polaris-vue-elements'Example
vue
<script setup>
import { SUnorderedList, SOrderedList, SListItem, SStack } from 'polaris-vue-elements'
</script>
<template>
<SStack direction="inline" gap="large-500" alignItems="start">
<SUnorderedList>
<!-- SListItem is the only accepted child of SUnorderedList/SOrderedList. -->
<SListItem>Free shipping over $50</SListItem>
<SListItem>30-day returns</SListItem>
<SListItem>24/7 customer support</SListItem>
</SUnorderedList>
<SOrderedList>
<SListItem>Add items to your cart</SListItem>
<SListItem>Review your order</SListItem>
<SListItem>Confirm and check out</SListItem>
</SOrderedList>
</SStack>
</template>Props
| Prop | Type | Description |
|---|---|---|
children | any | The content of the ListItem. |
id | string | undefined | A unique identifier for the element. |
Slots
| Slot | Description |
|---|---|
default | The content of the ListItem. |