# Introduction
# Vue persian datetime picker
A vuejs 2 (opens new window) plugin to select jalali/gregorian date and time
<template>
<date-picker v-model="date" format="YYYY-MM-DD" display-format="jYYYY-jMM-jDD" />
</template>
<script>
export default {
data() {
return {
date: '2020-10-10'
}
}
}
</script>
vue-3 support
If you are using vuejs 3 (opens new window) please refer to vue3-persian-datetime-picker (opens new window)