# 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>