小程序-封装日历组件-选择日期区间

1、登入微信公众平台

2、找到设置—第三方设置—点击“添加插件”—找到“极点日历”

小程序-封装日历组件-选择日期区间_第1张图片

3、接下来我们可以写代码了

// app.json
"plugins": {
    "calendar": {
      "version": "1.1.0",
      "provider": "wx92c68dae5a8bb046" // AppID
    }
  }
// index.json
  "usingComponents": {
    "calendar": "plugin://calendar/calendar", // 极点日历地址
    "my-date": "../components/date/date" // 封装的日历组件目录
  }
/*html*/
<calendar />

具体属性配置请看文档

你可能感兴趣的:(小程序)