vuetify-datetime-picker icon indicating copy to clipboard operation
vuetify-datetime-picker copied to clipboard

How can I fire this up without clicking on input field?

Open wpgeek922 opened this issue 5 years ago • 1 comments

I want to have show the datetime picker dialog when a custom button is clicked. How can I do that?

wpgeek922 avatar Sep 29 '20 12:09 wpgeek922

add ref to v-datetime-picker component: <v-datetime-picker ref="dateTimePicker"

and in function use this: this.$refs.dateTimePicker.display = true

valeriu-dev avatar Dec 05 '20 02:12 valeriu-dev