Giter Site home page Giter Site logo

vue3-datepicker's Introduction

Just a classic datepicker library for vue3

example

Demo

See online : Demo

Install

    npm i vue3-simple-datepicker --save

Usage

Warning Your Datepicker components must implement v-model

<template>
  <Datepicker v-if="datepicker_opened" v-model="date"/>
</template>

<script setup>
    import { Datepicker } from 'vue3-simple-datepicker';
    const datepicker_opened = ref(true);
    const date = ref(new Date());
</script>

Add style in main.ts or main.js

    import "node_modules/vue3-simple-datepicker/dist/style.css";

v-model must be a Date object

const date = ref(new Date());

<Datepicker v-model="date"/>

event

<Datepicker @on-cancel="onCancel" @on-done="onDone"/>

Props

Props Type Default Description
v-model Date Now Date selected in datepicker
month_name string[] Months name used in datepicker
days_names string[] ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'] Days name used in lib (only first two characters)
now_button boolean false Add a button between close and done for set to now the datepicker

Events

Events Output Description
onCancel Event The user clicked on Cancel button
onDone Date The user clicked on Done button

vue3-datepicker's People

Contributors

rmingon avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.