tui-form-field.vue 488 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view :class="{'tui-form__field':hidden}">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. //此组件只为form表单提交传递数据使用,暂时用于微信/百度小程序
  8. export default {
  9. name: "tui-form-field",
  10. // #ifndef VUE3
  11. behaviors: ['uni://form-field'],
  12. // #endif
  13. props: {
  14. //是否为隐藏域
  15. hidden: {
  16. type: Boolean,
  17. default: false
  18. }
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. .tui-form__field {
  24. display: none;
  25. opacity: 0;
  26. }
  27. </style>