You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
452 B
Vue

<template>
<view class="form-item">
<view class="title" :style="{width : (width || 'auto')}">{{title}}</view>
<view class="item">
<slot></slot>
</view>
</view>
</template>
<script setup>
const props = defineProps(['title', 'width'])
</script>
<style scoped>
.title {
display: inline-block;
margin-right: 20rpx;
line-height: 60rpx;
}
.item {
flex: 1;
width: 200rpx;
display: inline-block;
vertical-align: top;
}
</style>