EDatePicker
The EDatePicker
component replaces the standard html input type date and encapsulates well-defined logic that can be reused throughout the app.
Basic Usage
template
<script setup>
import { ref } from "vue";
import { EDatePicker } from "easy-kit-component";
const date = ref();
</script>
<template>
<EDatePicker v-model="date"/>
</template>
Date is :
API Reference
- Props
ts
interface DatePicker {
readOnly?: boolean;
disabled?: boolean;
}