configure component to not show 'Now' button
mohammad-zr opened this issue · 2 comments
mohammad-zr commented
Is there any prop to not show "Now" button inside component?
talkhabi commented
Hi @Esniper90, there is no direct config for this but you can hide it by css:
.vpd-actions button:nth-child(3) {
display: none;
}
talkhabi commented
Now you can use <date-picker :show-now-btn="false" />
to hide it.