0.0.4 • Published 3 years ago

mcdisuicomponents v0.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

MCDisUIComponents

Vue components.

Install

npm install mcdisuicomponents

Usage

<template>
  <Calendar @update:calendar="setDate" />
</template>

<script>
  import { Calendar } from 'mcdisuicomponents';

  export default {
    name: 'App',
    components: { Calendar },
    data: () => ({
      date: {
        day: 1,
        mounth: 1,
        year: 1970
      }
    }),
    methods: {
      setDate(date) {
        this.date = date;
      }
    }
  };
</script>
0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago