mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-14 18:11:48 +08:00
22 lines
497 B
Vue
22 lines
497 B
Vue
<template>
|
|
<div class="custom-style">
|
|
<el-segmented v-model="value" :options="options" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const value = ref('Delicacy')
|
|
|
|
const options = ['Delicacy', 'Desserts&Drinks', 'Fresh foods', 'Supermarket']
|
|
</script>
|
|
|
|
<style scoped>
|
|
.custom-style .el-segmented {
|
|
--el-segmented-item-selected-color: var(--el-text-color-primary);
|
|
--el-segmented-item-selected-bg-color: #ffd100;
|
|
--el-border-radius-base: 16px;
|
|
}
|
|
</style>
|