25 lines
476 B
Vue
25 lines
476 B
Vue
<template>
|
|
|
|
<view class="u-flex box">
|
|
<text class="color-333" v-if="modelValue">modelValue</text>
|
|
<text v-else class="color-999">成团人数</text>
|
|
<view class="u-flex u-m-l-20">
|
|
<up-icon name="arrow-down" color="#999" size="14"></up-icon>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
const modelValue=defineModel({
|
|
default:''
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.box{
|
|
padding: 12rpx 24rpx;
|
|
border-radius: 8rpx;
|
|
border: 2rpx solid #DDDFE6;
|
|
}
|
|
</style> |