如何设置默认的v日历可见月份

时间:2019-02-21 20:43:52

标签: vcalendar

我正在使用V日历选择日期范围

默认的v日历视图向我显示了当前月份和下个月 (今天是febury),例如:

enter image description here

但是我想设置当前和过去一个月的默认视图,因为默认范围是最近30天 ,例如:

enter image description here

如何在我的v日历中设置它?

1 个答案:

答案 0 :(得分:0)

我只是通过设置from-pageto-page道具来解决它。喜欢

<DatePicker :from-page="fromPage" :to-page="toPage" mode="range"/>

并使用momentjs获取这些参数

  get currentMonth() {
    const month = moment().month()+1; // 0 to 11
    const year = moment().year();
    return { month, year };
  }

  get previousMonth() {
    const month = moment().subtract(1, "month").month()+1; // 0 to 11
    const year = moment().subtract(1, "month").year();
    return { month, year };
  }