Here are the frequently asked questions about Ant Design Vue that you should look up before you ask in community or create new issue.
No, actually, you can convert Less to Sass/Stylus(etc...) with tools (which you can Google).
Select Dropdown DatePicker TimePicker Popover Popconfirm
disappear when I click another popup component inside it, How to resolve it?
Use <a-select :getPopupContainer="trigger => trigger.parentNode">
to render component inside Popover. (Or other getXxxxContainer props)
Use <a-select :getPopupContainer="trigger => trigger.parentNode">
to render component inside the scroll area. (Or other getXxxxContainer props).
First, we do not recommend using two-way binding in the Form, the same data may be used in multiple places, if you use two-way binding, then the data modification will be synchronized to each component, but this is not what we want, you Data should be synchronized when the form is submitted successfully or fails or confirmed. With a non-bidirectionally bound form, you have maximum control over data modification/synchronization.
Second, if you don't use the form's automatic check/collection feature, ie you don't use the v-decorator
modifier, you can still use v-model
.
See Customize Theme。
See: https://github.com/jmblog/how-to-optimize-momentjs-with-webpack
The defaultXxxx
(like defaultValue
) of Input
/Select
(etc...) only works in first render. This feature is referenced from React.
Try defaultValue
or change
or v-model
to change value
.
Yes, ant-design-vue is designed to develop a complete background application, we override some global styles for styling convenience, and it can't be removed now. More info trace ant-design/ant-design#4331 .
Or, follow the instructions in How to avoid modifying global styles?