Skip to content

afidosstar/vue-calendar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-calendar

Vue js component calendar mini

Dependances

- vue
- moment

Install

npm install vue-mini-calendar --save

Config

<template>
    <div id="app">
        <img src="./assets/logo.png">
        <calendar :moment="moment"></calendar>
    </div>
</template>
<script>
    import calendar from 'components/calendar.vue'
    import moment from 'moment'
    moment.locale('fr')
    export default {
    name: 'app',
    data () {
        return {
        msg: 'Welcome to Your Vue.js App',
        moment
        }
    },
    components: {
        calendar
    }
    } 
</script>

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

For detailed explanation on how things work, consult the docs for vue-loader.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published