tui-form-field.vue 745 Bytes
<template>
	<view :class="{'tui-form__field':hidden}">
		<slot></slot>
	</view>
</template>

<script>
	//此组件只为form表单提交传递数据使用,暂时用于微信/百度小程序
	export default {
		emits: ['input', 'update:modelValue'],
		name: "tui-form-field",
		// #ifdef MP-WEIXIN
		 behaviors: ['wx://form-field'],
		// #endif
		// #ifndef MP-WEIXIN
		behaviors: ['uni://form-field'],
		// #endif
		props: {
			//是否为隐藏域
			hidden: {
				type: Boolean,
				default: false
			},
			value: {
				type: [Number, String, Array],
				default: ''
			},
			modelValue: {
				type: [Number, String, Array],
				default: ''
			}
		}
	}
</script>

<style scoped>
	.tui-form__field {
		display: none;
		opacity: 0;
	}
</style>