• This project
    • Loading...
  • Sign in

fe / yohobuy-portal-fe2 · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
18612765b6c9217503f50560d4c51de3b98c2c2f
  • yohobuy-portal-fe2
  • code
  • components
  • calendar
  • test.vue
  • tianjia
    6fb07309
    by weiqingting
    8 years ago  
    Browse Files
test.vue 430 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<template>
    <calendar :show.sync="show" :value.sync="value" :begin="begin" :end="end" :range="range"></calendar>
</template>

<script>
module.exports = {
    data: function() {
        return {
            type:"datetime", //date datetime
            value:"2015-12-11",
            begin:"2015-12-20",
            end:"2015-12-25"
        }
    },
    components:{
        calendar: require('./calendar.vue')
    }
}
</script>