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

22 lines
375 B
Vue
Raw Normal View History

2025-04-14 11:42:21 +08:00
<script setup>
const {label} = defineProps({
label: {
type: String,
default: null,
}
});
</script>
<template>
<view class="x-form-item">
2025-05-12 19:45:27 +08:00
<view class="!mb-[8rpx] x-form-item-label" v-if="label">{{ label }}</view>
2025-04-14 11:42:21 +08:00
<slot></slot>
</view>
</template>
<style scoped lang="scss">
.x-form-item {
margin-bottom: 20rpx;
}
</style>