mirror of
https://github.com/tenrok/vue2-datepicker.git
synced 2026-05-25 16:44:06 +03:00
23 lines
310 B
Vue
23 lines
310 B
Vue
<template>
|
|
<div>
|
|
<date-picker
|
|
v-model="value"
|
|
format="hh:mm a"
|
|
value-type="format"
|
|
type="time"
|
|
placeholder="hh:mm a"
|
|
></date-picker>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ControlOpen',
|
|
data() {
|
|
return {
|
|
value: '',
|
|
};
|
|
},
|
|
};
|
|
</script>
|