0.0.5 • Published 2 years ago

ss-vue-calendar v0.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago
  1. 使用SsVueCalendar组件
      npm install ss-vue-calendar
      import SsVueCalendar from 'ss-vue-calendar'
      import "ss-vue-calendar/style.css"
      createApp(App).use(SsVueCalendar).mount('#app')
      // 如果项目中ts警告,`npm install @xxxxx` (如果存在),或者添加一个包含 `declare module ‘xxxxx‘;` 的新声明(.d.ts)文
      // 只需要在src下创建index.d.ts,内容是:declare module 'ss-vue-calendar'
  2. SsVueCalendar属性

      <ss-vue-calendar :width='480' :height='480' :islunarCalendar='false'></ss-vue-calendar>
    属性说明类型默认值
    width宽度,支持数字/px/%number/string480
    height高度,支持数字/px/%number/string480
    islunarCalendar是否显示农历booleantrue
  3. SsVueCalendar事件

      <ss-vue-calendar @resetTodayHandle='xx' ></ss-vue-calendar>
    事件说明参数类型
    resetTodayHandle点击‘今天’按钮触发params ,今天的年月日信息
    selectDayHandle点击可点击日期触发params,选中日的年月日信息
    currentSelectDayHandle监听到选中日变动时触发params,选中日的年月日信息
    updateYearHandle年下拉框选中时触发number,选中的年
    updateMonthHandle月下拉框选中时触发number,选中的月

其中params参数

  {
    day: 阳历日
    month: 阳历月
    type: "current"  //current表示当月,last表示上月,next表示下月
    week: 阳历周 // 0~6分别代表周日到周六
    year: 阳历年
    lunarDay: 农历日
    lunarMonth: 农历月
    lunarYear: 农历年
  }
  1. SsVueCalendar插槽

      <ss-vue-calendar>
        <template #tableHeader="scope">
          <!--scope中包含currentYear,currentMonth,currentDay信息-->
        </template>
        <template #theadCell="scope">
          <!--scope中包含星期几【'日', '一', '二', '三', '四', '五', '六'】的信息-->
        </template>
        <template #tbodyCell="scope">
          <!--scope中包含当前单元格日期信息-->
        </template>
      </ss-vue-calendar>
    插槽名说明
    tableHeader可替换表格头部,如年月下拉框等
    theadCell可替换表格头部周一,周二.....
    tbodyCell可自定义单元格内容以及样式
0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago