Files
xl-mobile/src/components/XDropdownItem.vue

21 lines
318 B
Vue
Raw Normal View History

2025-03-27 15:38:21 +08:00
<script setup>
</script>
<template>
<view class="!py-[14rpx] !px-[24rpx] text">
<slot></slot>
</view>
</template>
<style lang="scss" scoped>
.text {
color: rgb(29, 33, 41);
font-size: 14px;
font-weight: 400;
line-height: 140%;
letter-spacing: 0;
text-align: left;
}
</style>