No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.


  

Emrooz

Emrooz is a calendar library for Vue3.

Getting Started

npm i @cafebazaar/emrooz

Or

yarn add @cafebazaar/emrooz

Basic Usage

<script setup>
import { ref } from 'vue';
import { EMDatePicker } from '@cafebazaar/emrooz';
import '@cafebazaar/emrooz/dist/style.css';

const value = ref(null)
</script>
<template>
  <EMDatePicker v-model="value" />
</template>

To see further usages and more advanced features, please check examples.