vue2-clock-picker
vue2-clock-picker copied to clipboard
Initial open the clock
Is it possible to open the clock initially? I did not found something in the code
Hi @peterklein, so yes it's possible by using the method open at created like that:
<vue-clock-picker v-model="value" ref="time"></vue-clock-picker>
created() {
this.$refs.time.open();
}