zoukankan      html  css  js  c++  java
  • Vue之日历控件vue-full-calendar的使用

    (1).安装依赖

    npm install vue-full-calendar 
    npm install moment
    

    因为这是日历插件用到了时间工具类 === moment 

    (2).文件中导入依赖

    在想要用此插件的文件中导入依赖

      import { FullCalendar } from 'vue-full-calendar'
      import "fullcalendar/dist/fullcalendar.css";

    注册到组件中

    components: { FullCalendar },

    我的代码:

    <template>
    <div class="fullCalendarCont">
          <el-date-picker
            size="small"
            style=" 144px;"
            v-model="selectDate"
            type="date"
            placeholder="选择时间"
            @change="changeDate">
          </el-date-picker>
          <full-calendar
            :config="config"
            :events="events"
            ref="calendar"
          ></full-calendar>
      </div>
    </template>
    <script>
      import { FullCalendar } from 'vue-full-calendar'
      import "fullcalendar/dist/fullcalendar.css";
      export default {
        components: { FullCalendar},
        data() {
          return {
            selectDate:'',//日期选择器选中的月份
            events: [{
              id:1,
              title:'出差',
              start: '2020-07-20', // 事件开始时间
              end: '2020-07-21',   // 事件结束时间
            }, {
              id:2,
              title:'春游',
              start: '2020-07-12 09:00:00',
              end: '2020-07-18 12:00:00',
            }, {
              id:3,
              title:'春游2',
              start: '2020-07-12 09:00:00',
              end: '2020-07-12 12:00:00',
            }, {
              id:4,
              title:'春游3',
              start: '2020-07-26 13:00:00',
              end: '2020-07-26 15:00:00',
    
            }, {
              id:5,
              title:'春游4',
              start: '2020-07-26 15:00:00',
              end: '2020-07-26 16:00:00',
            }],
            config: {
              firstDay:'0',//以周日为每周的第一天
              buttonText: { today: "今天", month: "", week: "", day: "" },
              header: {left:'today', center: 'prev, title, next'},
              theme:false,//是否允许使用jquery的ui主题
              height:'auto',
              slotLabelFormat:'H:mm', // axisFormat 'H(:mm)'
              //slotLabelInterval:1,
              views: {
                month: {
                  titleFormat: 'YYYY年MMM'
                },
                day: {
                  titleFormat: 'YYYY年MMMDD日 dddd'
                }
              },
              monthNames: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
              monthNamesShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
              dayNames: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"],
              dayNamesShort: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"],
              slotDuration:'00:30:00',
              minTime:'00:00',
              maxTime:'24:00',
              locale: "zh-cn",
              editable: false, //是否允许修改事件
              selectable: false,//是否允许用户单击或者拖拽日历中的天和时间隙
              eventLimit: false, // 限制一天中显示的事件数,默认false
              allDaySlot:true, //是否显示allDay
              displayEventEnd: false,//是否显示结束时间
              allDayText: '全天',
              navLinks: true, //允许天/周名称是否可点击
              defaultView: "agendaWeek", //显示默认视图
              eventClick: this.eventClick, //点击事件
              dayClick: this.dayClick, //点击日程表上面某一天
              eventRender: this.eventRender
    
            }
          }
        },
        methods: {
          changeDate(){
            this.$refs.calendar.fireMethod('gotoDate', this.selectDate)
          },
          // 点击事件
          eventClick (event, jsEvent, pos) {
            alert('eventClick', event, jsEvent, pos)
          },
          // 点击当天
          dayClick (day, jsEvent) {
            alert('dayClick', day, jsEvent)
          },
          eventRender:function (event, element) {
            element.find('.fc-title').attr('title',event.title)
          }
        }
      }
    </script>
  • 相关阅读:
    21.Merge Two Sorted Lists 、23. Merge k Sorted Lists
    34. Find First and Last Position of Element in Sorted Array
    leetcode 20. Valid Parentheses 、32. Longest Valid Parentheses 、301. Remove Invalid Parentheses
    31. Next Permutation
    17. Letter Combinations of a Phone Number
    android 常见分辨率(mdpi、hdpi 、xhdpi、xxhdpi )及屏幕适配注意事项
    oc 异常处理
    oc 类型判断
    oc Delegate
    oc 协议
  • 原文地址:https://www.cnblogs.com/zhouwan/p/13600671.html
Copyright © 2011-2022 走看看