We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74a93b8 commit a582cc9Copy full SHA for a582cc9
src/components/core/calendar.vue
@@ -37,7 +37,17 @@
37
@hover="onHover"
38
@blur="onBlur"
39
>
40
+ <template
41
+ slot="day-of-week"
42
+ slot-scope="wd, index">
43
44
+ <slot
45
+ v-bind="wd, index"
46
+ name="day-of-week">
47
+ {{ wd }}
48
+ </slot>
49
+
50
+ </template>
51
<template
52
slot="day"
53
slot-scope="props">
src/components/core/month.vue
@@ -11,7 +11,11 @@
11
:key="index"
12
class="col">
13
<div class="vuec-week-content">
14
- {{ wd }}
15
16
17
18
19
</div>
20
<div class="vuec-week-placeholder"/>
21
0 commit comments