date-week-range icon indicating copy to clipboard operation
date-week-range copied to clipboard

基于element-ui 源码,改造而成的date-week-range 组件,主要目的是为了实现周的范围选择

Results 12 date-week-range issues
Sort by recently updated
recently updated
newest added

package.json:"module": "src/index.esm.js" src下面没有index.esm.js; 修改成dist,正常使用,"module": "dist/index.esm.js" ![image](https://user-images.githubusercontent.com/21299398/199915617-90dc4757-f293-4b43-b8c2-b482adb21467.png)

当前是8月6号,应该只到6号的 ![image](https://user-images.githubusercontent.com/23009078/183242087-015f3f66-419c-4239-b307-3e008b970081.png) 完整代码 ``` Title new Vue({ data() { return { test: ['2022-07-09', new Date()], pickerOptions: { // 默认周一为周起始日 firstDayOfWeek: 1, }, } } }).$mount("#app"); ```

![image](https://user-images.githubusercontent.com/52212023/146635010-71993f88-1e6b-48bf-af10-20b35dcf079a.png)

new Vue({ data() { return { test: [new Date()], pickerOptions: { disabledDate: (time) => { return time.getTime() < 1709192714000 } } } } }).$mount("#app"); ![4-7](https://github.com/xiaofan9/date-week-range/assets/59193698/422e34a7-8c0e-41dd-90ec-e36a540c54e8) gif地址:https://github.com/xiaofan9/date-week-range/assets/59193698/422e34a7-8c0e-41dd-90ec-e36a540c54e8

import dayjs from 'dayjs' import 'dayjs/locale/zh-cn' dayjs.locale('zh-cn')

![image](https://github.com/xiaofan9/date-week-range/assets/43981702/ef5906b8-527f-4253-8962-e13318bb4bb2)

![image](https://github.com/xiaofan9/date-week-range/assets/17310230/2f053088-9359-4b6e-8057-c554817c873d)

![image](https://user-images.githubusercontent.com/54398397/232428416-aabd4d3f-053d-4104-b5de-2f8677e5489c.png) 作者可以帮忙看看是什么问题吗?在线等