DemoDateTimePickerInline.vue 195 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 <script setup> const date = ref('') </script> <template> <AppDateTimePicker v-model="date" label="Inline" placeholder="Select Date" :config="{ inline: true }" /> </template>