talkhabi/vue-persian-datetime-picker

configure component to not show 'Now' button

mohammad-zr opened this issue · 2 comments

Is there any prop to not show "Now" button inside component?

Hi @Esniper90, there is no direct config for this but you can hide it by css:

.vpd-actions button:nth-child(3) {
    display: none;
}

Now you can use <date-picker :show-now-btn="false" /> to hide it.