hookehuyr

fix 短文本输入控件新增边框

......@@ -22,7 +22,6 @@
:disabled="item.component_props.disabled"
:input-align="item.component_props.align"
clearable
:border="false"
/>
</div>
</template>
......@@ -44,4 +43,10 @@ const props = defineProps({
}
}
}
:deep(.van-cell__value) {
border: 1px solid #eaeaea;
border-radius: 0.25rem;
padding: 0.25rem 0.5rem;
}
</style>
......