自定义组件中写上如下代码
<template>
<view>
<uni-forms labelWidth="330px"
label-position="top">
<uni-forms-item label="label"
required>
<uni-easyinput v-model="test"
placeholder="请输入label"
type="textarea"
autoHeight
maxlength="250"></uni-easyinput>
</uni-forms-item>
</uni-forms>
</view>
</template>
<script>
export default {
name: "MyComponent",
props: {
label: String,
},
data(){
return {'test':''};
}
}
</script>
<style scoped
lang="scss">
</style>
随便一个页面中引入这个组件
<my-component></my-component>
可见label-position不起作用
根本原因:
uni-form代码
provide() {
return {
uniForm: this
}
},
这里提供的uniForm在uni-form-item组件中无法获取
1 个回复
DCloud_UNI_yuhe
hello , 我这里测试使用 label-position 在字节小程序中是生效的,你可以更新一下插件版本看一下