vue版本ant-design-vue DatePicker组件不显示 #1468
-
{ |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
你不觉得这种问题很没营养吗?第一,代码格式有问题,第二,没有复现地址,能不能多考虑下开源维护者的感受 |
Beta Was this translation helpful? Give feedback.
-
提供的信息太少无法复现出该问题,参考:https://codesandbox.io/s/heuristic-kapitsa-omgwv?file=/src/App.vue |
Beta Was this translation helpful? Give feedback.
-
const DatePicker = (props, context) => h(ADatePicker, context.attrs); 当前将DatePicker包裹在一个没有children的函数式组件中可以解决这个问题。 产生原因是 DatePicker的实现中,默认的input组件能被插槽覆盖,而formily-vue始终为组件添加了默认插槽,但是这个插槽可能是空的。后续版本会提供更严谨的插槽支持能从根源解决该问题。 |
Beta Was this translation helpful? Give feedback.
当前将DatePicker包裹在一个没有children的函数式组件中可以解决这个问题。
产生原因是 DatePicker的实现中,默认的input组件能被插槽覆盖,而formily-vue始终为组件添加了默认插槽,但是这个插槽可能是空的。后续版本会提供更严谨的插槽支持能从根源解决该问题。