Skip to content

Segmented 0.1.23

Segmented is used to display multiple options and allow users to select a single option.

When To Use

  • Used to display multiple options and allow users to select a single option;
  • When switching the selected option, the content in the associated area will change.

Basic Usage

Set the options list through the options property and bind the current selected item through v-model:value.

vue
<wd-segmented :options="list" v-model:value="current"></wd-segmented>
ts
const list = ref<string[]>(['Comments', 'Likes', 'Contributions', 'Rewards'])

const current = ref('Likes')

Large Segmented

Create a large segmented by setting the size property to "large".

html
<wd-segmented :options="list" v-model:value="current" size="large"></wd-segmented>

Small Segmented

Create a small segmented by setting the size property to "small".

html
<wd-segmented :options="list" v-model:value="current" size="small"></wd-segmented>

Segmented with Vibration Effect

Make the phone produce a short vibration when switching options by setting the vibrate-short property to true.

html
<wd-segmented :options="list" v-model:value="current" :vibrate-short="true"></wd-segmented>

Disabled Segmented

Disable the segmented by setting the disabled property to true.

html
<wd-segmented :options="list" v-model:value="current" disabled></wd-segmented>

Custom Rendering Segmented Labels

Use the label slot to customize the rendering of segmented labels.

html
<wd-segmented :options="list" v-model:value="current" :vibrate-short="true">
  <template #label="{ option }">
    <view class="section-slot">
      <image style="border-radius: 50%; width: 32px; height: 32px" :src="option.payload.avatar" />
      <view class="name">{{ option.value }}</view>
    </view>
  </template>
</wd-segmented>
ts
const list = ref([
  {
    value: 'Li Lei',
    disabled: false,
    payload: {
      avatar: 'https://registry.npmmirror.com/wot-design-uni-assets/*/files/redpanda.jpg'
    }
  },
  {
    value: 'Han Meimei',
    disabled: false,
    payload: {
      avatar: 'https://registry.npmmirror.com/wot-design-uni-assets/*/files/capybara.jpg'
    }
  }
])
scss
.section {
  width: 100%;
  padding: 0 24rpx;
  box-sizing: border-box;
  &-slot {
    padding: 4px;
  }
}

Using in Popup

On WeChat Mini Program, when using this component in a popup, you need to call the updateActiveStyle method to update the segmented style. See Common Problems.

html
<wd-button @click="handleClick">Open Popup</wd-button>
<wd-popup v-model="showPopup" position="bottom" @after-enter="handlePopupShow" closable custom-style="height: 200px;padding: 0 24rpx;">
  <view class="title">Using in Popup</view>
  <wd-segmented :options="list" v-model:value="current" ref="segmentedRef"></wd-segmented>
</wd-popup>
ts
const list = ref<string[]>(['Comments', 'Likes', 'Contributions', 'Rewards'])
const current = ref('Likes')

const segmentedRef = ref<SegmentedInstance>() // Get segmented instance
const showPopup = ref(false) // Control popup display
/**
 * Click button to open popup
 */
function handleClick() {
  showPopup.value = true
}
/**
 * Update segmented style after popup opens
 */
function handlePopupShow() {
  segmentedRef.value?.updateActiveStyle()
}
css
.title {
  display: flex;
  font-size: 32rpx;
  align-items: center;
  justify-content: center;
  padding: 24rpx 0;
}

Attributes

ParameterDescriptionTypeOptionsDefaultVersion
value/v-model:valueCurrently selected valuestring / number--0.1.23
disabledWhether to disable the segmentedbooleantrue / falsefalse0.1.23
sizeControl sizestringlarge / middle / smallmiddle0.1.23
optionsData collectionstring[] / number[] / SegmentedOption[]-[]0.1.23
vibrateShortWhether to vibrate when switching optionsbooleantrue / falsefalse0.1.23

SegmentedOption

ParameterDescriptionTypeOptionsDefaultVersion
valueSelected valuestring / number--0.1.23
disabledWhether to disablebooleantrue / false-0.1.23
payloadAdditional dataany--0.1.23

Events

Event NameDescriptionParametersVersion
changeTriggered when option switchesSegmentedOption0.1.23
clickTriggered when option is clickedSegmentedOption1.2.20

Methods

Exposed functions

Method NameDescriptionParametersVersion
updateActiveStyleUpdate slider offset, parameter animation is used to enable/disable animation, enabled by default(animation: boolean) => void-

Slots

NameDescriptionParametersVersion
labelOption label content{ option: SegmentedOption }0.1.23

External Classes

Class NameDescriptionVersion
customStyleCustom style0.1.23
customClassCustom style class0.1.23

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.