luukvnes
luukvnes
I have the same issue, has anyone found a fix already?
Sorry I forgot to save the jsfiddle. This is the new version. (I also updated the original text) https://jsfiddle.net/zecv4mhy/
Can be fixed by adding this line `sequences: keyMap[key]?.sequences ?? updatedComponentShortcuts[key].sequences,` to label-list.tsx in the below useEffect ``` useEffect(() => { const updatedComponentShortcuts = JSON.parse(JSON.stringify(componentShortcuts)); for (const [index, labelID] of...
@KaelWD Ah, i missed that. Currently though the VDatePicker does not pass slots through to the VDatePickerMonth. Would a pull request including a change like the following (where slots are...
```vue {{ month.text }} export default { name: 'Playground', setup () { return { // } }, } .custom-class { border: 1px red solid; } ```
Description This change passes through the slots for VDatePicker sub components, allowing for custom styling of individual dates in the calendar. The dateClass prop takes a function that takes a...