Skip to content

Nepali Date PickerBikram Sambat Date Picker Made Easy

A ready-to-use Nepali (Bikram Sambat) date picker component for Vue 3, Vue 2, and React — built on top of nepali-date-library.

Quick Start

vue
<!-- npm install nepali-datepicker-vue -->
<script setup>
import { ref } from "vue";
import NepaliDatePicker from "nepali-datepicker-vue";

const date = ref("");
</script>

<template>
  <NepaliDatePicker
    v-model="date"
    placeholder="YYYY-MM-DD"
    :year-select="true"
    :month-select="true"
  />
</template>
vue
<!-- npm install nepali-datepicker-vue2 -->
<script>
import NepaliDatePicker from "nepali-datepicker-vue2";

export default {
  components: { NepaliDatePicker },
  data() {
    return { date: "" };
  },
};
</script>

<template>
  <NepaliDatePicker
    v-model="date"
    placeholder="YYYY-MM-DD"
    :year-select="true"
    :month-select="true"
  />
</template>
tsx
// Stay tuned for the React component package!

Packages

💚 Vue 3

Full-featured date picker for Vue 3 with TypeScript support and Composition API.

View Vue 3 Docs →

💚 Vue 2

Date picker component compatible with Vue 2 and the Options API.

View Vue 2 Docs →

⚛️ React Coming Soon

A React version of the Nepali date picker is currently in development.

Released under the MIT License.