溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mpvue calendar怎么使用

發(fā)布時間:2022-03-07 15:22:22 來源:億速云 閱讀:636 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“mpvue calendar怎么使用”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

基于 vue-calendar 的適配 mpvue 平臺的的微信小程序日歷組件

安裝

npm i mpvue-calendar

使用

  • import Calendar from 'mpvue-calendar' 引入組件

  • components 中注冊組件 Calendar

  • template 中使用組件 <Calendar />

參數(shù)及方法

mpvue calendar怎么使用

  • value 參數(shù) 在普通模式下value為一維數(shù)組如2018年6月21為 [2018,6,21] 在range和multi模式下value為二維數(shù)組,如range模式選中2018年6月21到6月28為 [[2018,6,21], [2018,6,28]]

  • events 參數(shù) events為自定義備注,例如備注2018年6月21日為 {'2018-6-21': '今日備注', '2018-6-22':'明日備注'} ,在 clean 模式下備注為圓點, lunar 農(nóng)歷模式下不顯示備注

  • disabled 參數(shù) disabled為禁用日期,如禁用2018-6-21日為 ['2018-6-21']

示例

<template>
  <div><Calendar
      :months="months"
      :value="value"
      @next="next"
      @prev="prev"
      :events="events"
      lunar
      clean
      @select="select"
      ref="calendar"
      @selectMonth="selectMonth"
      @selectYear="selectYear"
    /><button @click="setToday">返回今日</button>
  </div>
</template>

<script>
import Calendar from 'mpvue-calendar'

export default {
  data () {
    return {
      months: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
      disabledarr: ['2018-6-27','2018-6-25'],
      value: [2018,6,7],
      begin:[2016,1,1],
      end:[2020,1,1],
      events: {'2018-6-7':'今日備注', '2018-6-8':'一條很長的明日備注'},
    }
  },
  components: {
    Calendar
  },
  methods: {
    selectMonth(month,year){
      console.log(year,month)
    },
    prev(month){
      console.log(month)
    },
    next(month){
      console.log(month)
    },
    selectYear(year){
      console.log(year)
    },
    setToday(val,val1,val2) {
      this.$refs.calendar.setToday();
    },
    select(val, val2) {
      console.log(val)
      console.log(val2)
    }
  }
}
</script>

“mpvue calendar怎么使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI