1234567891011121314151617181920212223242526272829 |
- <template>
- <view :class="{'tui-form__field':hidden}">
- <slot></slot>
- </view>
- </template>
- <script>
- //此组件只为form表单提交传递数据使用,暂时用于微信/百度小程序
- export default {
- name: "tui-form-field",
- // #ifndef VUE3
- behaviors: ['uni://form-field'],
- // #endif
- props: {
- //是否为隐藏域
- hidden: {
- type: Boolean,
- default: false
- }
- }
- }
- </script>
- <style scoped>
- .tui-form__field {
- display: none;
- opacity: 0;
- }
- </style>
|