0.0.4 • Published 9 months ago
@phila/phila-ui-date-picker v0.0.4
Phila UI Date Picker
The Phila UI Date Picker is a customizable date picker component built in Vue 3.
Installation
First, install the Phila UI Date Picker package using npm:
npm install @phila/phila-ui-date-picker
Import the Date Picker component in your Vue project: In main.ts:
... import DatePicker from "@phila/phila-ui-date-picker"; ... app.component("DatePicker", DatePicker); ...
Use the Date Picker component in your Vue template:
<template> <div> <date-picker v-model="selectedDate"></date-picker> </div> </template>