91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

在Vue項目中用fullcalendar制作日程表的示例代碼

發布時間:2020-08-31 21:41:32 來源:腳本之家 閱讀:526 作者:來點靈感 欄目:web開發

前言

最近老牌日歷插件fullcalendar更新了v4版本,而且添加了Vue支持,所以用最新的fullcalendar v4制作一個完整日歷體驗一下,效果圖:

在Vue項目中用fullcalendar制作日程表的示例代碼

安裝

FullCalendar的功能被分解為“插件”。如果您需要它提供的功能,您只需要包含一個插件。

也就是說,FullCalendar v4所有插件都得單獨安裝引用。

npm install --save @fullcalendar/vue @fullcalendar/core @fullcalendar/daygrid

引用并初始化

引用、注冊FullCalendar組件,得到一個月視圖的日歷。

<script>
import FullCalendar from '@fullcalendar/vue'
import dayGridPlugin from '@fullcalendar/daygrid'

export default {
 components: {
  FullCalendar
 },
 data() {
  return {
   calendarPlugins: [ dayGridPlugin ]
  }
 }
}

</script>
<template>
 <FullCalendar defaultView="dayGridMonth" :plugins="calendarPlugins" />
</template>
<style lang='less'>
  //用什么插件必須引入相應的樣式表,否則不能正常顯示
  @import '~@fullcalendar/core/main.css';
  @import '~@fullcalendar/daygrid/main.css';
</style>

功能定制

為了完成復雜功能,需要引用更多插件,插件列表:

https://fullcalendar.io/docs/plugin-index

語言設置簡體中文

  <FullCalendar locale="zh-cn" />

如果表頭加了button的話,button文字要單獨做處理,給每個button的英文名稱加一個中文的映射,例:

  <FullCalendar
   :header="{
    left: 'prev,next today',
    center: 'title',
    right: 'dayGridMonth,timeGridWeek,timeGridDay,listWeek'
   }"
   :buttonText="buttonText" 
   />
 data () {
  return {
   buttonText: {
    today: '今天',
    month: '月',
    week: '周',
    day: '天'
   }
  }
 }

點擊日歷添加事件

想要觸發dateClick事件必須先安裝引用interaction插件,文檔鏈接:https://fullcalendar.io/docs/dateClick

npm install --save @fullcalendar/interaction

  <FullCalendar @dateClick="handleDateClick" />
  handleDateClick (arg) {
   if (confirm('Would you like to add an event to ' + arg.dateStr + ' ?')) {
    this.calendarEvents.push({ // add new event data
     title: 'New Event',
     start: arg.date,
     allDay: arg.allDay
    })
   }
  }

點擊事件查看詳情

<FullCalendar @eventClick="handleEventClick" />
  handleEventClick (info) {
   alert('Event: ' + info.event.title)
  }

完整例子在我的github項目里,項目地址:https://github.com/Inspiration1/asteroid

官方文檔:

https://fullcalendar.io/docs/vue

https://fullcalendar.io/docs#toc

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

荃湾区| 韶山市| 图片| 东阿县| 五莲县| 沁阳市| 绍兴县| 玛纳斯县| 梁河县| 普兰县| 桐柏县| 五峰| 大余县| 都匀市| 邯郸市| 泗水县| 石景山区| 资中县| 东方市| 宁城县| 丹江口市| 岳池县| 屏山县| 新兴县| 合山市| 昌乐县| 竹溪县| 黄梅县| 饶河县| 宁波市| 宽城| 清涧县| 荆州市| 铅山县| 桦南县| 凤城市| 措勤县| 江阴市| 临漳县| 宜阳县| 馆陶县|